import React from 'react'; interface Cols { columnKey?: string; columnLabel?: string | React.ReactNode; minWidth?: number; style?: React.CSSProperties; render?: (row: any, index: any) => React.ReactNode; } interface TableProps { cols?: Array; data?: Array; isExpandable?: boolean; expandCols?: Array; expandLabelKey?: string; preloading?: boolean; className?: string; onExpand?: (row: object, id: string) => void; sx?: any; isPagination?: boolean; page?: number; rowsPerPage?: number; tableContainerStyles?: any; childTableStyles?: any; childLoading?: boolean; } declare const Table: (tableProps: TableProps) => JSX.Element; export default Table;