import { IThemePropertie, IFullTheme } from '../types'; /** * 生成 TS * @param data 数据 * @param toPath 生成路径 * @param toType 创建类型 */ export declare function codeCreator(data: IThemePropertie[] | undefined, toPath: string): Promise; /** * 生成入口文件 * @param dirs * @param toPath */ export declare function indexCreator(dirs: string[] | undefined, toPath: string): void; /** 全量数据生成 */ export declare function fullDataCreator(fullData: IFullTheme | undefined, toPath: string): Promise;