import Joi from "joi";
import { When } from "ivr-tester";
declare const typeValue: "contains";
export interface JsonWhenPromptContains {
    type: typeof typeValue;
    value: string;
}
export declare const jsonWhenPromptContains: {
    typeValue: "contains";
    schema: Joi.ObjectSchema<JsonWhenPromptContains>;
    converter(json: JsonWhenPromptContains): When;
};
export {};
