import { Plugin } from 'vite'; /* * @types.d.ts.ts * @deprecated * @author czh * @update (czh 2022/3/23) */ declare interface ISvgTransScriptOption { input: string output?: string name?: string type?: string format?: string } declare interface ISvgCtxItem { name: string svg: string } interface ISVGDict { [key:string]:string } /* * @core.d.ts.ts * @deprecated * @author czh * @update (czh 2022/3/23) */ declare function transformScript(options: ISvgTransScriptOption): Plugin /* * @svg-file-loader.d.ts.ts * @deprecated * @author czh * @update (czh 2022/3/23) */ declare function findSvgFile (dir:string):Array /* * @create-file.d.ts.ts * @deprecated * @author czh * @update (czh 2022/3/23) */ declare function createFile(outputPath:string,fileName:string ,type:string,format:string,svgCtx:Array):void /* * @load-svg.d.ts * @deprecated * @author czh * @update (czh 2022/4/7) */ declare function loadSvg(svgDict:ISVGDict):any export { ISVGDict, ISvgCtxItem, ISvgTransScriptOption, createFile, findSvgFile, loadSvg, transformScript };