import { ActionDef } from "oak-domain/lib/types/Action"; import { GenericAction } from "oak-domain/lib/actions/action"; export type IAction = 'succeed' | 'fail' | 'ship' | string; export type IState = 'depositing' | 'successful' | 'failed' | 'shipped' | string; export declare const IActionDef: ActionDef; export type ParticularAction = IAction; export declare const actions: string[]; export type Action = GenericAction | ParticularAction | string; export declare const actionDefDict: { iState: ActionDef; };