import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { ThresholdGuardrail } from "./ThresholdGuardrail";
export declare const ContentConfig: core.serialization.ObjectSchema<serializers.ContentConfig.Raw, ElevenLabs.ContentConfig>;
export declare namespace ContentConfig {
    interface Raw {
        sexual?: ThresholdGuardrail.Raw | null;
        violence?: ThresholdGuardrail.Raw | null;
        harassment?: ThresholdGuardrail.Raw | null;
        self_harm?: ThresholdGuardrail.Raw | null;
        profanity?: ThresholdGuardrail.Raw | null;
        religion_or_politics?: ThresholdGuardrail.Raw | null;
        medical_and_legal_information?: ThresholdGuardrail.Raw | null;
    }
}
