import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { InteractionBudget } from "./InteractionBudget"; import { OutputFormat } from "./OutputFormat"; import { Verbosity } from "./Verbosity"; export declare const BehaviorOverride: core.serialization.ObjectSchema; export declare namespace BehaviorOverride { interface Raw { verbosity?: Verbosity.Raw | null; output_format?: OutputFormat.Raw | null; interaction_budget?: InteractionBudget.Raw | null; } }