import type * as ElevenLabs from "../index";
/**
 * Safety evaluation of the agent. Prompt and first message is taken into account.
 * The unsafe reason is provided from the evaluation
 */
export interface SafetyEvaluation {
    isUnsafe?: boolean;
    llmReason?: string;
    safetyPromptVersion?: number;
    matchedRuleId?: ElevenLabs.SafetyRule[];
}
