import { IWeAppData, CodeType } from '../types'; /** * WeApps 的文件系统 * 配置文件 * LowCode * JsonSchema */ /** * 将原本的 JSON SCHEMA 拆解为文件列表 */ export declare function originJsonToFileList(appData: IWeAppData): (import("../types").IWeAppCode | { path: string; name: string; type: string; code: string; pageId: string; })[]; export declare function getExtByType(type: CodeType): ".less" | ".js" | ".json"; export declare function HACK_FIX_LOWCODE_IN(code?: string): string; export declare function HACK_FIX_LOWCODE_OUT(code?: string): string;