import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
export declare const ConversationDeletionSettings: core.serialization.ObjectSchema<serializers.ConversationDeletionSettings.Raw, ElevenLabs.ConversationDeletionSettings>;
export declare namespace ConversationDeletionSettings {
    interface Raw {
        deletion_time_unix_secs?: number | null;
        deleted_logs_at_time_unix_secs?: number | null;
        deleted_audio_at_time_unix_secs?: number | null;
        deleted_transcript_at_time_unix_secs?: number | null;
        delete_transcript_and_pii?: boolean | null;
        delete_audio?: boolean | null;
    }
}
