/// import { Locale } from "../i18n"; import { AttachContainer } from "../_util/get-overlay-root"; export declare const DEFAULT_CLASS_PREFIX: string; export declare const DEFAULT_LOCALE: "zh" | "en" | "ko" | "ja"; export interface Config { /** * 组件类名前缀 * * @default "tea" */ classPrefix?: string; /** * 组件语言包配置 * * **内置语言包可从组件 [/lib/i18n/locale](https://unpkg.com/tea-component/lib/i18n/locale/) 目录下引入** * * @docType Locale */ locale?: "zh" | "en" | "ko" | "ja" | Locale; /** * 挂载弹出组件的结点 * @default document.body * @since 2.5.0 */ popupContainer?: AttachContainer; } export declare const ConfigContext: import("react").Context;