export type TableHeadProps = { children?: React.ReactNode | undefined; className?: string | undefined; id?: string | undefined; key?: string | undefined; }; export declare const TableHead: ({ children, className, ...otherProps }: TableHeadProps) => import("react").JSX.Element; export type TableHeaderProps = { children?: React.ReactNode | undefined; className?: string | undefined; id?: string | undefined; key?: string | undefined; }; export declare const TableHeader: ({ children, className, ...otherProps }: TableHeaderProps) => import("react").JSX.Element; export type TableRowProps = { children?: React.ReactNode | undefined; className?: string | undefined; id?: string | undefined; key?: string | undefined; }; export declare const TableRow: ({ children, className, ...otherProps }: TableRowProps) => import("react").JSX.Element; export type TableDataProps = { children?: React.ReactNode | undefined; className?: string | undefined; id?: string | undefined; key?: string | undefined; }; export declare const TableData: ({ children, className, ...otherProps }: TableDataProps) => import("react").JSX.Element; export type TableBodyProps = { children?: React.ReactNode | undefined; className?: string | undefined; id?: string | undefined; key?: string | undefined; }; export declare const TableBody: ({ children, className, ...otherProps }: TableHeaderProps) => import("react").JSX.Element; export type TableProps = { children?: React.ReactNode | undefined; className?: string | undefined; id?: string | undefined; key?: string | undefined; }; export declare const Table: ({ children, className, ...otherProps }: TableProps) => import("react").JSX.Element; //# sourceMappingURL=Table.d.ts.map