import Joi from "joi";
import { When } from "ivr-tester";
declare const typeValue: "containsSimilarTo";
export interface JsonWhenPromptContainsSimilarTo {
    type: typeof typeValue;
    value: string;
    threshold?: number;
}
export declare const jsonWhenPromptContainsSimilarTo: {
    typeValue: "containsSimilarTo";
    schema: Joi.ObjectSchema<JsonWhenPromptContainsSimilarTo>;
    converter(json: JsonWhenPromptContainsSimilarTo): When;
};
export {};
