import { FlowState } from '.';
import { FlowStateEnum } from '../../types';
export declare class FlowStopping extends FlowState {
    getStateCode(): FlowStateEnum;
    stopped(error?: Error | boolean): void;
    protected postProcessFinished(error: Error | boolean, _stopFlowExecutionOnError: boolean): void;
}
