export interface ParsedSvg { attributes: string[]; template: string; } export declare function parseSvg(svg: string): ParsedSvg; export declare function createSvgSymbol(parsedSvg: ParsedSvg, id?: string): string; export declare function getSvgHash(parsedSvg: ParsedSvg): string; export declare function makeIdsUnique(xml: string): string;