import { default as React } from 'react'; import { ExpressionContext } from '../expression/expression-types'; import { TableCellItem } from '../report-definition-types'; type Row = Record; interface Props { items: TableCellItem[]; row: Row; exprCtx: ExpressionContext; } export declare const CellItemsRenderer: React.FC; export {};