import type { ComponentProps, FC, PropsWithChildren } from 'react'; import { TableContextType } from './TableContext'; export interface FlowbiteTableTheme { base: string; wrapper: string; head: { base: string; cell: { base: string; }; }; row: { hovered: string; striped: string; }; cell: { base: string; }; } export type TableProps = PropsWithChildren & TableContextType>; export declare const Table: FC & { Head: FC; Body: FC; Row: FC; Cell: FC; HeadCell: FC; };