import { GlyphMeta } from "../types"; import { ViewBoxInfo } from "../utils/svg-helpers"; export declare const DEFAULT_UNITS_PER_EM = 1024; export declare const DEFAULT_ASCENT = 896; export declare const DEFAULT_DESCENT = -128; export type { ViewBoxInfo }; export type PathEntry = { d: string; fill?: string; }; export declare const extractViewBox: (svg: string) => ViewBoxInfo; export declare const extractPaths: (svg: string) => string[]; export declare const normalizeSvgPaths: (svg: string, unitsPerEm?: number) => { d: string; viewBox: ViewBoxInfo; paths: PathEntry[]; }; export declare const createSvgFont: (glyphs: GlyphMeta[], fontName: string, unitsPerEm?: number) => string;