import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { SafetyRule } from "./SafetyRule"; export declare const SafetyEvaluation: core.serialization.ObjectSchema; export declare namespace SafetyEvaluation { interface Raw { is_unsafe?: boolean | null; llm_reason?: string | null; safety_prompt_version?: number | null; matched_rule_id?: SafetyRule.Raw[] | null; } }