import { I18nParams } from '@tutti-os/ui-i18n-runtime'; type AgentGuiI18nLocale = "en" | "zh-CN"; type TranslateOptions = I18nParams; type TranslateFn = (key: string, options?: TranslateOptions) => string; export type { AgentGuiI18nLocale as A, TranslateFn as T };