import { type PaginationProps } from '@cimpress-ui/react'; import type { RowData } from './tanstack.js'; import type { TableEngine } from './types.js'; export interface TablePaginationProps extends Pick { /** The data engine created with the `useTableEngine` hook. */ engine: TableEngine; } export declare function TablePagination({ engine, ...props }: TablePaginationProps): import("react/jsx-runtime").JSX.Element; export declare namespace TablePagination { var displayName: string; } //# sourceMappingURL=pagination.d.ts.map