import type { DeepPartial } from '../types/helper'; /** * 国际化相关配置 */ export declare const defaultI18nConfig: { locale: string; messages: { value: string; label: string; dayjs: Record; cosey: Record; app: Record; }[]; }; export type I18nConfig = DeepPartial; export type RequiredI18nConfig = typeof defaultI18nConfig;