import { type LocalesType } from '@lingxiteam/engine-assets'; import { MediatorRequestOptions, PlatformConfigType } from '@lingxiteam/engine-platform'; import type { BasicConfigType } from '@lingxiteam/engine-render'; export interface pcConfigType extends BasicConfigType { platformConfig?: PlatformConfigType; /** * 请求配置 */ requestOptions?: Partial; /** * 组件库多语言配置 */ locales?: LocalesType; } /** * 初始化资产 * @param options */ export declare const initConfig: (options: pcConfigType) => void;