import type { PdfOperator } from "../custom"; declare const ALLOWED_OPERATORS: readonly ["m", "l", "h", "v", "c", "z"]; type SvgOperator = (typeof ALLOWED_OPERATORS)[number]; interface ParsedPdfPaths { operator: PdfOperator; svgOperator: SvgOperator; values: number[]; } export declare const svgPathToPdfPaths: (svgPath: string) => ParsedPdfPaths[]; export {}; //# sourceMappingURL=svgPathToPdfPaths.util.d.ts.map