import React from 'react'; interface PaginationProps { isTablePagination?: boolean; rowsPerPageOptions?: Array; colSpan?: number; count?: number; rowsPerPage?: number; page?: number; SelectProps?: any; boundaryCount?: number; color?: 'primary' | 'secondary' | 'standard'; defaultPage?: number; disabled?: boolean; hideNextButton?: boolean; hidePrevButton?: boolean; shape?: 'circular' | 'rounded'; showFirstButton?: boolean; showLastButton?: boolean; siblingCount?: number; size?: 'small' | 'medium' | 'large'; variant?: 'outlined' | 'text'; sx?: any; setPage?: React.Dispatch>; setRowsPerPage?: React.Dispatch>; } declare const Pagination: ({ isTablePagination, rowsPerPageOptions, colSpan, count, rowsPerPage, page, SelectProps, setPage, setRowsPerPage, ...other }: PaginationProps) => JSX.Element; export default Pagination;