import React from 'react'; import type { MouseEvent } from 'react'; interface DataTablePaginationActionsProps { count: number; page: number; rowsPerPage: number; onPageChange(event: MouseEvent, newPage: number): void; } interface DataTablePaginationActionsBuilder { showFirstButton?: boolean; showLastButton?: boolean; clickable?: boolean; } export declare const makeDataTablePaginationActions: ({ showFirstButton, showLastButton, clickable }: DataTablePaginationActionsBuilder) => ({ count, page, rowsPerPage, onPageChange }: DataTablePaginationActionsProps) => React.JSX.Element; export {};