import Joi from "joi";
import { Then } from "ivr-tester";
declare const typeValue: "hangUp";
export interface JsonThenHangUp {
    type: typeof typeValue;
}
export declare const jsonThenHangUp: {
    typeValue: "hangUp";
    schema: Joi.ObjectSchema<JsonThenHangUp>;
    converter(json: JsonThenHangUp): Then;
};
export {};
