import { StateMachineParams } from './interfaces/index';
export declare const runStateMachine: ({ input: { process, status, payload }, methods: { run, interrupt, done, onError } }: StateMachineParams) => void;
