export declare const replaceSize: (content: string, size: number) => string; export declare const replaceCases: (content: string, cases: string) => string; export declare const replaceSvgComponents: (content: string, components: Set) => string; export declare const replaceNames: (content: string, names: string[]) => string; export declare const replaceNamesArray: (content: string, names: string[]) => string; export declare const replaceComponentName: (content: string, name: string) => string; export declare const replaceSingleIconContent: (content: string, render: string) => string; export declare const replaceImports: (content: string, imports: string[]) => string; export declare const replaceHelper: (content: string) => string; export declare const replaceNoColor: (content: string) => string; export declare const replaceSummaryIcon: (content: string, iconName: string) => string; export declare const replaceComponentXml: (content: string, svgStr: string) => string; /** * 用helper中的getIconColor方法替换svg xml字符串的属性中的fill,实现颜色可配置的功能 * @param xmlString */ export declare const replaceFillAttr: (xmlString: string) => string; /** * 用helper中的getIconColor方法替换svg xml字符串的样式中的fill,实现颜色可配置的功能 * @param xmlString */ export declare const replaceFillStyle: (xmlString: string) => string;