import { ComponentType } from 'react'; import { FieldState } from 'formstate'; import { TableCellProps } from '../table'; import { PossibleFormState } from '../table-state'; export interface EditorProps extends TableCellProps { fieldState: FieldState; formState: PossibleFormState; } interface GetEditableCellParams { viewer?: ComponentType>; editor: ComponentType>; } export declare function getEditableCell({ viewer: Viewer, editor: Editor, }: GetEditableCellParams): (props: TableCellProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=get-editable-cell.d.ts.map