import { FlowStateEnum } from '../../types';
import { FlowState } from './flow-state';
export declare class FlowPausing extends FlowState {
    getStateCode(): FlowStateEnum;
    paused(error: Error | boolean): void;
    protected postProcessFinished(error: Error | boolean, _stopFlowExecutionOnError: boolean): void;
}
