import { Dispatch, SetStateAction } from 'react'; import { OperationResult } from './DependentTabs'; import { DFWhole } from './staticData'; import { DfConfig } from './StatusBar'; import { CommandConfigT } from './CommandUtils'; import { Operation } from './OperationUtils'; export declare type CommandConfigSetterT = (setter: Dispatch>) => void; export declare function WidgetDCFCell({ origDf, operations, on_operations, operation_results, commandConfig, dfConfig, on_dfConfig }: { origDf: DFWhole; operations: Operation[]; on_operations: (ops: Operation[]) => void; operation_results: OperationResult; commandConfig: CommandConfigT; dfConfig: DfConfig; on_dfConfig: unknown; }): JSX.Element; export declare function WidgetDCFCellExample(): JSX.Element; //# sourceMappingURL=DCFCell.d.ts.map