import { UnitsType } from '../../Types/Units/UnitsType.js'; export declare class SvgConverter { static toSvg(value: number): string; static toSvgWithUnits(value: number, units: UnitsType): string; static vectorToSvg(vector: { x: number; y: number; }): string; static vectorToSvgWithUnits(vector: { x: number; y: number; }, units: UnitsType): string; static toPixelSize(value: number, units: UnitsType): number; static vectorToPixelSize(value: T, units: UnitsType): T; } //# sourceMappingURL=SvgConverter.d.ts.map