import type { Vector2, Vector3, Vector4 } from "./math.vector"; /** * Creates a string representation of the Vector2 * @param vector defines the Vector2 to stringify * @param decimalCount defines the number of decimals to use * @returns a string with the Vector2 coordinates. */ export declare function Vector2ToFixed(vector: Vector2, decimalCount: number): string; /** * Creates a string representation of the Vector3 * @param vector defines the Vector3 to stringify * @param decimalCount defines the number of decimals to use * @returns a string with the Vector3 coordinates. */ export declare function Vector3ToFixed(vector: Vector3, decimalCount: number): string; /** * Creates a string representation of the Vector4 * @param vector defines the Vector4 to stringify * @param decimalCount defines the number of decimals to use * @returns a string with the Vector4 coordinates. */ export declare function Vector4ToFixed(vector: Vector4, decimalCount: number): string;