import { type CursorPaginationProps } from '../cursor-pagination'; export interface DataTableCursorFooterProps extends Omit { /** * Override the shown current count. Defaults to the number of currently rendered rows * from the table instance. */ currentCount?: number; } /** * Cursor-based prev/next footer for a `DataTable`. Place after ``. * Thin wrapper around `` with a border-top separator to match the legacy `Table` look. */ export declare function DataTableCursorFooter({ className, currentCount, showInfo, ...rest }: DataTableCursorFooterProps): import("react").JSX.Element; //# sourceMappingURL=data-table-cursor-footer.d.ts.map