import type { TableProps } from './types'; import { TableEmpty } from './TableEmpty'; import { TableExpand } from './TableExpand'; import { TableFilter } from './TableFilter'; import { TableTd } from './TableTd'; import { TableTh } from './TableTh'; import { TableThAction } from './TableThAction'; export declare const Table: { (props: TableProps): React.ReactElement | null; Th: typeof TableTh; ThAction: typeof TableThAction; Td: typeof TableTd; Filter: typeof TableFilter; Empty: typeof TableEmpty; Expand: typeof TableExpand; };