export declare const RUNTIME_ENV = "runtime_env"; export declare const RENDER_PREFER_LOOKUP_TEXTURE = "lookup_texture"; export declare const TEMPLATE_USE_OFFSCREEN_CANVAS = "offscreen_canvas"; export declare const POST_PROCESS_SETTINGS = "post_process_settings"; /** * 获取全局配置项 * @param name * @returns */ export declare function getConfig>(name: string): T; /** * 设置全局配置项 * @param name * @param value * @returns */ export declare function setConfig>(name: string, value: T): string | number | boolean | Record;