import type { FC } from 'react' import type React from 'react' import type { TableContainerProps } from './Container' import type { PaginatorProps } from './Paginator' import type { RootProps } from './Root' import type { RowProps } from './Row' import tbody from './Body' import td from './Cell' import container from './Container' import thead from './Head' import th from './HeadCell' import thr from './HeadRow' import { Paginator } from './Paginator' import table from './Root' import tr from './Row' export interface TableProps { container: FC thead: FC, HTMLTableSectionElement>> table: FC tr: FC thr: FC, HTMLTableRowElement>> th: FC, HTMLTableHeaderCellElement>> td: FC, HTMLTableDataCellElement>> tbody: FC, HTMLTableSectionElement>> Paginator: FC } export const Table: TableProps = { container, thead, table, tr, thr, th, td, tbody, Paginator } export * from './GenericTable'