import { ComponentType } from 'react'; import { TableCellProps } from '../table'; import { PossibleFormState } from '../table-state'; export interface EditActionProps extends TableCellProps { formState: PossibleFormState; } interface GetActionCellParams { view: ComponentType>; edit: ComponentType>; } export declare function getActionCell({ view: ViewAction, edit: EditAction }: GetActionCellParams): (props: TableCellProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=get-action-cell.d.ts.map