/** * The prefixes of variables used in wxml */ export declare function getWxmlDataPrefix(debug?: boolean): { appState: string; pageState: string; appComputed: string; pageComputed: string; widgetProp: string; forItem: string; forIndex: string; }; export declare const varSeparator = "."; /** * If the prop name of component is textContentPropName, this prop will be generated as child(innerText) of the component */ export declare const textContentPropName = "text"; export declare const jsonSchemaType2jsClass: { number: string; string: string; image: string; color: string; boolean: string; object: string; array: string; time: string; date: string; daterange: string; }; export declare const defaultProjConfig: { packOptions: { ignore: never[]; }; setting: { urlCheck: boolean; es6: boolean; enhance: boolean; postcss: boolean; minified: boolean; newFeature: boolean; nodeModules: boolean; autoAudits: boolean; uglifyFileName: boolean; checkInvalidKey: boolean; checkSiteMap: boolean; uploadWithSourceMap: boolean; codeProtect: boolean; compileHotReLoad: boolean; ignoreDevUnusedFiles: boolean; useCompilerPlugins: string[]; }; compileType: string; libVersion: string; appid: string; debugOptions: {}; isGameTourist: boolean; simulatorType: string; simulatorPluginLibVersion: {}; }; export declare const builtinMpEvents: string[]; export declare const nativeCompWhiteList: string[]; export declare const builtinMpTags: string[]; export declare const builtinWigetProps: string[]; export declare function isBuiltinMpTag(tag: string): boolean; export declare function getClassAttrName(tag: string): "class" | "className"; export declare const WeappsCompSelect = "WeappsCompSelect";