export type RootElement = HTMLTableElement;
export type RootProps = React.HTMLAttributes;
export type SectionElement = HTMLTableSectionElement;
export type SectionProps = React.HTMLAttributes;
export type RowElement = HTMLTableRowElement;
export type RowProps = React.HTMLAttributes;
export type HeadElement = HTMLTableCellElement;
export type HeadProps = React.ThHTMLAttributes;
export type CellElement = HTMLTableCellElement;
export type CellProps = React.TdHTMLAttributes;
export type CaptionElement = HTMLTableCaptionElement;
export type CaptionProps = React.HTMLAttributes;