import TableBody from './body'; import TableCaption from './caption'; import TableCell from './cell'; import TableFooter from './footer'; import TableHead from './head'; import TableHeader from './header'; import TableRow from './row'; import TableRoot from './table'; declare const Table: typeof TableRoot & { Body: typeof TableBody; Caption: typeof TableCaption; Cell: typeof TableCell; Footer: typeof TableFooter; Head: typeof TableHead; Header: typeof TableHeader; Row: typeof TableRow; }; export default Table; export type { TableBodyProps, TableCaptionProps, TableCellProps, TableFooterProps, TableHeaderProps, TableHeadProps, TableProps, TableRowProps, } from './types'; export { TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow };