import React from 'react'; /** Props for {@link TablePaginationActions}. */ export interface TablePaginationActionsProps { count: number; enableNextPage?: boolean; loading?: boolean; onPageChange: (event: React.MouseEvent, newPage: number) => void; page: number; rowsPerPage: number; } /** First/previous/next/last page controls for payload table pagination. */ export declare function TablePaginationActions({ count, enableNextPage, loading, onPageChange, page, rowsPerPage, }: Readonly): React.JSX.Element; //# sourceMappingURL=TablePagination.d.ts.map