import Joi from "joi";
import { Then } from "ivr-tester";
declare const typeValue: "press";
export interface JsonThenPress {
    type: typeof typeValue;
    value: string;
}
export declare const jsonThenPress: {
    typeValue: "press";
    schema: Joi.ObjectSchema<JsonThenPress>;
    converter(json: JsonThenPress): Then;
};
export {};
