import React from 'react'; export type TableProps = React.TableHTMLAttributes & { containerClassName?: string; containerStyle?: React.CSSProperties; }; export type TableHeaderProps = React.HTMLAttributes; export type TableBodyProps = React.HTMLAttributes; export type TableFooterProps = React.HTMLAttributes; export type TableRowProps = React.HTMLAttributes; export type TableHeadProps = React.ThHTMLAttributes; export type TableCellProps = React.TdHTMLAttributes; export type TableCaptionProps = React.HTMLAttributes; type TableRootComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableRoot: TableRootComponent; type TableHeaderComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableHeader: TableHeaderComponent; type TableBodyComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableBody: TableBodyComponent; type TableFooterComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableFooter: TableFooterComponent; type TableRowComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableRow: TableRowComponent; type TableHeadComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableHead: TableHeadComponent; type TableCellComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableCell: TableCellComponent; type TableCaptionComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const TableCaption: TableCaptionComponent; type TableComponent = typeof TableRoot & { Header: typeof TableHeader; Body: typeof TableBody; Footer: typeof TableFooter; Row: typeof TableRow; Head: typeof TableHead; Cell: typeof TableCell; Caption: typeof TableCaption; }; export declare const Table: TableComponent; export default Table; //# sourceMappingURL=index.d.ts.map