import type { I18nOptions } from 'vue-i18n'; import type { AntLocales } from '../../../theme'; export interface Language { label: string; value: keyof AntLocales; icon: string; } export interface YunzaiI18nConfig { languages: Language[]; options: I18nOptions; }