import { EditContext, EditEvent } from './index.data'; import { ActionMeta } from 'xstate'; export declare function wrapAction(f: (context: EditContext, { selectedRow, selectedCell, state }: EditEvent, meta?: ActionMeta) => any): { type: string; assignment: (context: EditContext, { selectedRow, selectedCell, state }: EditEvent, meta?: ActionMeta | undefined) => any; }; declare function isIdle(stateValue: any): boolean; declare function isSelecting(stateValue: any): boolean; declare function isEditing(stateValue: any): boolean; declare function isPicking(stateValue: any): boolean; export declare const fsmPred: { isIdle: typeof isIdle; isSelecting: typeof isSelecting; isEditing: typeof isEditing; isPicking: typeof isPicking; }; export {};