import type * as ElevenLabs from "../index";
export interface ChapterSnapshotExtendedResponseModel {
    /** The ID of the chapter snapshot. */
    chapterSnapshotId: string;
    /** The ID of the project. */
    projectId: string;
    /** The ID of the chapter. */
    chapterId: string;
    /** The creation date of the chapter snapshot. */
    createdAtUnix: number;
    /** The name of the chapter snapshot. */
    name: string;
    characterAlignments: ElevenLabs.CharacterAlignmentModel[];
}
