import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { ChapterContentBlockInputModelSubType } from "./ChapterContentBlockInputModelSubType";
import { ChapterContentParagraphTtsNodeInputModel } from "./ChapterContentParagraphTtsNodeInputModel";
export declare const ChapterContentBlockInputModel: core.serialization.ObjectSchema<serializers.ChapterContentBlockInputModel.Raw, ElevenLabs.ChapterContentBlockInputModel>;
export declare namespace ChapterContentBlockInputModel {
    interface Raw {
        sub_type?: ChapterContentBlockInputModelSubType.Raw | null;
        nodes: ChapterContentParagraphTtsNodeInputModel.Raw[];
        block_id?: string | null;
    }
}
