import type * as ElevenLabs from "../index";
export interface ChapterResponse {
    /** The ID of the chapter. */
    chapterId: string;
    /** The name of the chapter. */
    name: string;
    /** The last conversion date of the chapter. */
    lastConversionDateUnix?: number;
    /** The conversion progress of the chapter. */
    conversionProgress?: number;
    /** Whether the chapter can be downloaded. */
    canBeDownloaded: boolean;
    /** The state of the chapter. */
    state: ElevenLabs.ChapterState;
    /** Whether the chapter has a video. */
    hasVideo?: boolean;
    /** Whether the chapter has any visual content (video, image, or text clips). */
    hasVisualContent?: boolean;
    /** List of voice ids used by the chapter */
    voiceIds?: string[];
    /** The statistics of the chapter. */
    statistics?: ElevenLabs.ChapterStatisticsResponse;
    /** The last conversion error of the chapter. */
    lastConversionError?: string;
}
