import type * as ElevenLabs from "../index";
export interface ProjectExternalAudioResponseModel {
    externalAudioId: string;
    filename: string;
    signedUrl: string;
    offsetMs: number;
    durationMs: number;
    startTimeMs: number;
    endTimeMs: number;
    order: string;
    trackId: string;
    createdAtMs: number;
    updatedAtMs: number;
    volumeGainDb?: number;
    muted?: boolean;
    fadeInMs?: number;
    fadeOutMs?: number;
    sourceExternalAudioId?: string;
    sourceAssetId?: string;
    pendingBlockIds: string[];
    pendingExternalAudioIds: string[];
    speechImported?: boolean;
    pendingTask?: ElevenLabs.PendingClipTask;
    currentSnapshotId?: string;
    sourceContext?: ElevenLabs.ProjectExternalAudioResponseModelSourceContext;
    importSpeechProgress?: number;
}
