import type { InferenceCache } from '../engine'; import type { ResolvedColumn } from '../engine'; import type { RowWithId } from '../hooks/useGrid'; interface GridCellProps> { column: ResolvedColumn; row: RowWithId; cache: InferenceCache; rowHeight: number; /** True when the grid is wired to run vision / rich-text jobs. */ aiOrchestrationActive?: boolean; /** When false, image cells never render the hover popover. */ enableVisionPopover?: boolean; } export declare function GridCell>({ column, row, cache, rowHeight, aiOrchestrationActive, enableVisionPopover, }: GridCellProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=GridCell.d.ts.map