export type ConversionResult = { hasErrors: boolean; errors: NodeListOf | null; content: any; }; export declare const svgToExcalidraw: (svgString: string) => ConversionResult;