import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
export declare const ReadMetadataChapterDbModel: core.serialization.ObjectSchema<serializers.ReadMetadataChapterDbModel.Raw, ElevenLabs.ReadMetadataChapterDbModel>;
export declare namespace ReadMetadataChapterDbModel {
    interface Raw {
        chapter_name: string;
        word_count: number;
        char_count: number;
        starting_char_offset: number;
        has_parsed_html?: boolean | null;
        has_summary?: boolean | null;
        duration_seconds?: number | null;
        file_number?: string | null;
    }
}
