import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { ClientEvent } from "./ClientEvent";
export declare const ConversationConfig: core.serialization.ObjectSchema<serializers.ConversationConfig.Raw, ElevenLabs.ConversationConfig>;
export declare namespace ConversationConfig {
    interface Raw {
        text_only?: boolean | null;
        max_duration_seconds?: number | null;
        client_events?: ClientEvent.Raw[] | null;
        monitoring_enabled?: boolean | null;
        monitoring_events?: ClientEvent.Raw[] | null;
    }
}
