export declare function svgToSymbol(xml: string, id: string): {
    symbolXml: string;
    attributes: {
        width: string | null;
        height: string | null;
        viewBox: string | null;
    };
} | null;
