import type * as ElevenLabs from "../index";
export interface SpeakerSeparationResponseModel {
    /** The ID of the voice. */
    voiceId: string;
    /** The ID of the sample. */
    sampleId: string;
    /** The status of the speaker separation. */
    status: ElevenLabs.SpeakerSeparationResponseModelStatus;
    /** The speakers of the sample. */
    speakers?: Record<string, ElevenLabs.SpeakerResponseModel | undefined>;
    /** The IDs of the selected speakers. */
    selectedSpeakerIds?: string[];
}
