import { DonobuException } from './DonobuException';
/**
 * This exception is thrown when a particular active flow is not found. Unlike
 * FlowNotFoundException, this exception will be thrown even if the flow exists but is simply not
 * in an active state.
 */
export declare class ActiveFlowNotFoundException extends DonobuException {
    readonly flowId: string;
    constructor(flowId: string);
}
//# sourceMappingURL=ActiveFlowNotFoundException.d.ts.map