import type { InferenceCache, ResolvedColumn } from '../engine'; import type { RowWithId } from '../hooks/useGrid'; interface GridRowProps> { rowIndex: number; row: RowWithId; columns: ResolvedColumn[]; cache: InferenceCache; rowHeight: number; onClick?: (row: T) => void; aiOrchestrationActive?: boolean; inferencingRevision?: number; enableVisionPopover?: boolean; } export declare function GridRow>({ rowIndex: _rowIndex, row, columns, cache, rowHeight, onClick, aiOrchestrationActive, inferencingRevision, enableVisionPopover, }: GridRowProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GridRow.d.ts.map