import type { HTMLAttributes, TdHTMLAttributes, ThHTMLAttributes } from 'react';
declare const Table: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const TableHeader: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const TableBody: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const TableFooter: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const TableRow: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const TableHead: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const TableCell: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
declare const TableCaption: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
export type TableProps = HTMLAttributes;
export type TableHeaderProps = HTMLAttributes;
export type TableBodyProps = HTMLAttributes;
export type TableFooterProps = HTMLAttributes;
export type TableRowProps = HTMLAttributes;
export type TableHeadProps = ThHTMLAttributes;
export type TableCellProps = TdHTMLAttributes;
export type TableCaptionProps = HTMLAttributes;
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, };