//#region src/svg/units.d.ts declare function parseSvgLengthPt(raw: string | undefined): number | undefined; declare function parseSvgUserUnits(raw: string | undefined): number | undefined; interface SvgViewBox { readonly minX: number; readonly minY: number; readonly width: number; readonly height: number; } declare function parseSvgViewBox(raw: string | undefined): SvgViewBox | undefined; //#endregion export { SvgViewBox, parseSvgLengthPt, parseSvgUserUnits, parseSvgViewBox };