import { LocaleText } from '@befe/brick-core'; /** * @public */ export interface LocaleTable { /** * 空内容提示.加载中 */ 'loading': LocaleText; /** * 空内容提示.无数据 */ 'no_data_empty': LocaleText; /** * 空内容提示.无搜索结果 */ 'no_data_search': LocaleText; /** * 空内容提示.错误 */ 'no_data_error': LocaleText; /** * 操作列.更多 */ 'ellipsis_more': LocaleText; } export declare const localeDictTable: import("@befe/brick-core").ComponentLocale<{ en_us: { loading: string; no_data_empty: string; no_data_search: string; no_data_error: string; no_data_success: string; ellipsis_more: string; }; zh_cn: { loading: string; no_data_empty: string; no_data_search: string; no_data_error: string; no_data_success: string; ellipsis_more: string; }; }>;