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