export declare class EmopTableProPageInfoClass { /** * 分页器是否可视 */ visible?: boolean; /** * 当前页数 */ pageIndex?: number; /** * 每页条数 */ pageSize?: number; /** * 每页的条数 */ pageSizeList?: number[]; /** * 数据总数 */ total?: number; /** * 只有一页时是否隐藏分页器 */ hideOnSinglePage?: boolean; /** * 是否可以快速跳转至某页 */ showQuickJumper?: boolean; /** * 是否禁用 */ disabled?: boolean; /** * 分页器大小 */ size?: 'default' | 'small'; constructor(constructorData: EmopTableProPageInfoClass | true); }