import type { ComponentProps, FC } from 'react'; type TableProps = ComponentProps<'table'> & { dataTestId?: string; }; type TableHeadProps = ComponentProps<'thead'> & { dataTestId?: string; }; type TableHeadCellProps = ComponentProps<'th'> & { dataTestId?: string; }; type TableBodyProps = ComponentProps<'tbody'> & { dataTestId?: string; }; type TableRowProps = ComponentProps<'tr'> & { dataTestId?: string; }; type TableCellProps = ComponentProps<'td'> & { dataTestId?: string; }; type TableFooterProps = ComponentProps<'tfoot'> & { dataTestId?: string; }; export declare const Table: FC & { Head: FC; HeadCell: FC; Body: FC; Row: FC; Cell: FC; Footer: FC; }; export {};