import { Table as TanstackTable } from '@tanstack/react-table'; type DataTablePaginationProps = { table: TanstackTable; pageSizeOptions?: number[]; /** 是否显示已选择行数,默认 true */ showSelectionCount?: boolean; }; /** * 表格分页栏:总行数 / 每页数量 / 页码跳转 */ export declare function DataTablePagination({ table, pageSizeOptions, showSelectionCount, }: DataTablePaginationProps): import("react/jsx-runtime").JSX.Element; export {};