import React from 'react'; import { IHTMLTableProps } from '@blueprintjs/core'; import { Column, Row } from 'react-table'; export interface TableProps { columns: Array>; data: T[]; renderCustomRow?: (row: Row) => JSX.Element; className?: string; bpTableProps: IHTMLTableProps; hideHeaders?: boolean; } export declare function Table(props: TableProps): React.ReactElement;