import { TableProps } from './types'; import { HeadRow } from './HeadRow'; import { TableBody } from './TableBody'; import { TableRow } from './TableRow'; declare const Table: React.NamedExoticComponent & { HeadRow: typeof HeadRow; Body: typeof TableBody; Row: typeof TableRow; }; export { Table };