export { Table } from './Table'; export { TableHeader } from './TableHeader'; export { TableBody } from './TableBody'; export { TableRow } from './TableRow'; export { HeadRow } from './HeadRow'; export { HeaderCell } from './HeaderCell'; export { RowCell } from './RowCell'; export { TableFooter } from './TableFooter'; export type { TableProps, TableHeaderProps, HeadRowProps, HeaderCellProps, TableRowProps, RowCellProps, RowCellTitle, RowCellText, RowCellContent, TableFooterProps, InteractionConfig, InteractionStateConfig, RowCellInteraction, } from './types'; export { DEFAULT_ROW_INTERACTION, DEFAULT_PAGE_SIZE_OPTIONS } from './constants'; /** @deprecated Import from `@/components/Table/TableLegacy` instead. */ export { Table as LegacyTable, TableBody as LegacyTableBody, TableCaption as LegacyTableCaption, TableCell as LegacyTableCell, TableFooter as LegacyTableFooter, TableHead as LegacyTableHead, TableHeader as LegacyTableHeader, TableRow as LegacyTableRow, } from './TableLegacy';