import React from 'react'; export type TableRowState = 'default' | 'disabled'; export type TableRowZebra = 'none' | 'striped'; export interface TableRowProps extends React.HTMLAttributes { state?: TableRowState; interactive?: boolean; rowId?: string; activeCellId?: string | null; zebra?: TableRowZebra; expandable?: boolean; expandContent?: React.ReactNode; defaultExpanded?: boolean; setActiveCellId?: (id: string | null) => void; } export declare const TableRow: React.FC;