import { ReactNode } from 'react'; export interface TableRowProps { /** true if the first cell of the row is a header cell */ firstCellIsHeader?: boolean; /** the data to populate the row */ row: null | string[] | { text: string | number; format?: string; key?: string | number; }[]; children?: ReactNode; classBlock?: string; classModifiers?: string | string[] | null; className?: string; } export declare const DEFAULT_CLASS = "hods-table"; export declare const TableRow: ({ firstCellIsHeader, row, children, classBlock, classModifiers, className, ...attrs }: TableRowProps) => import("react/jsx-runtime").JSX.Element;