import { LocaleText } from '@befe/brick-core'; /** * @public */ export interface LocalePagination { /** * 数据总数 前缀 */ 'total_prefix': LocaleText; /** * 数据总数 后缀 * * e.g `(total: number) => (total > 1 ? 'items' : 'item')` */ 'total_suffix': LocaleText; /** * 跳转页数 输入框前缀 */ 'goto_prefix': LocaleText; /** * 跳转页数 输入框后缀 */ 'goto_suffix': LocaleText; /** * 跳转页数 确认按钮 */ 'goto_confirm': LocaleText; /** * 每页条数 前缀 */ 'per_page_prefix': LocaleText; /** * 每页条数 后缀 */ 'per_page_suffix': LocaleText; /** * 上一页 按钮 */ 'prev_page': LocaleText; /** * 下一页 按钮 */ 'next_page': LocaleText; } export declare const localeDictPagination: import("@befe/brick-core").ComponentLocale<{ en_us: { total_prefix: string; total_suffix: (total: number) => "items" | "item"; goto_prefix: string; goto_suffix: string; goto_confirm: string; per_page_prefix: string; per_page_suffix: string; prev_page: string; next_page: string; }; zh_cn: { total_prefix: string; total_suffix: string; goto_prefix: string; goto_suffix: string; goto_confirm: string; per_page_prefix: string; per_page_suffix: string; prev_page: string; next_page: string; }; }>;