/**
 * 默认显示多少页面
 * @type {number}
 */
export declare const DEFAULT_PAGE_SIZE: number;
/**
 * 分页选择
 * @type {number[]}
 */
export declare const PAGE_SIZE_OPTIONS: string[];
/**
 * 显示总记录数
 * @param total
 * @returns {string}
 */
export declare const showTotal: (total: number) => string;
