import { Optional } from '@angular/core'; /** * 要修改显示的标签和文本 */ export declare class SimPaginatorIntl { /** 增加当前页面的按钮文本 Next page */ nextPageLabel: string; /** 减少当前页面的按钮文本 Previous page */ previousPageLabel: string; /** 当前页面增加的按钮文本 Increase five page */ increaseFivePageLabel: string; /** 当前页面减少5页的按钮文本 Decrease five page */ decreaseFivePageLabel: string; /** 移动到第一页的按钮文本 First page */ firstPageLabel: string; /** 移动到最后一页的按钮文本 Last page */ lastPageLabel: string; /** * 用于当前页内项范围和整个列表长度的标签 * page: 从1开始 */ getRangeLabel: (page: number, pageSize: number, length: number) => string; } export declare function SIM_PAGINATOR_INTL_PROVIDER_FACTORY(parentIntl: SimPaginatorIntl): SimPaginatorIntl; export declare const SIM_PAGINATOR_INTL_PROVIDER: { provide: typeof SimPaginatorIntl; deps: Optional[][]; useFactory: typeof SIM_PAGINATOR_INTL_PROVIDER_FACTORY; };