import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CharacterAlignmentModel } from "./CharacterAlignmentModel"; export declare const ProjectSnapshotExtendedResponseModel: core.serialization.ObjectSchema; export declare namespace ProjectSnapshotExtendedResponseModel { interface Raw { project_snapshot_id: string; project_id: string; created_at_unix: number; name: string; audio_upload?: Record | null; zip_upload?: Record | null; character_alignments: CharacterAlignmentModel.Raw[]; audio_duration_secs: number; } }