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