import { StateTypeExecutor } from '../StateTypeExecutor';
import type { StateExecutorOutput } from '../../types/StateExecutorOutput';
import type { MapStateDefinition } from '../../types/State';
import { Context } from '../../Context/Context';
export declare class MapExecutor extends StateTypeExecutor {
    private pendingStateMachineExecutions;
    execute(context: Context, stateDefinition: MapStateDefinition, inputJson: string | undefined): Promise<StateExecutorOutput>;
    private processOutput;
    private processInput;
}
