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