import type * as ElevenLabs from "../index";
export interface VerificationAttemptResponse {
    /** The text of the verification attempt. */
    text: string;
    /** The date of the verification attempt in Unix time. */
    dateUnix: number;
    /** Whether the verification attempt was accepted. */
    accepted: boolean;
    /** The similarity of the verification attempt. */
    similarity: number;
    /** The Levenshtein distance of the verification attempt. */
    levenshteinDistance: number;
    /** The recording of the verification attempt. */
    recording?: ElevenLabs.RecordingResponse;
}
