import type * as ElevenLabs from "../index";
export interface ChapterStatisticsResponse {
    /** The number of unconverted characters. */
    charactersUnconverted: number;
    /** The number of converted characters. */
    charactersConverted: number;
    /** The number of converted paragraphs. */
    paragraphsConverted: number;
    /** The number of unconverted paragraphs. */
    paragraphsUnconverted: number;
    /** Per-voice breakdown of character counts. */
    voiceStatistics?: ElevenLabs.VoiceStatisticsResponseModel[];
}
