import * as React from 'react'; interface TablePaginationProps extends React.HTMLAttributes { count: number; pageSize: number; pageIndex: number; pageCount: number; canPreviousPage: boolean; canNextPage: boolean; translations?: { of?: string; results?: string; pages?: string; prev?: string; next?: string; }; previousPage: () => void; nextPage: () => void; } declare const Table: React.ForwardRefExoticComponent & React.RefAttributes> & { Row: React.ForwardRefExoticComponent & React.RefAttributes>; Cell: React.ForwardRefExoticComponent & React.RefAttributes>; Header: React.ForwardRefExoticComponent & React.RefAttributes>; HeaderCell: React.ForwardRefExoticComponent & React.RefAttributes>; Body: React.ForwardRefExoticComponent & React.RefAttributes>; Pagination: React.ForwardRefExoticComponent>; }; export { Table };