export declare const ArvoOrchestrationHandlerMap: {
    readonly orchestrator: "ArvoOrchestrator";
    readonly resumable: "ArvoResumable";
    readonly machine: "ArvoMachine";
    readonly handler: "ArvoEventHandler";
};
export type ArvoOrchestrationHandlerType = keyof typeof ArvoOrchestrationHandlerMap;
