import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { Contributor } from "./Contributor"; import { DirectPublishingReadResponseModelDisplayMode } from "./DirectPublishingReadResponseModelDisplayMode"; import { DirectPublishingReadResponseModelGenreItem } from "./DirectPublishingReadResponseModelGenreItem"; import { DirectPublishingReadResponseModelPayoutType } from "./DirectPublishingReadResponseModelPayoutType"; import { DirectPublishingReadResponseModelTargetAudience } from "./DirectPublishingReadResponseModelTargetAudience"; import { PreviewAudioDbModel } from "./PreviewAudioDbModel"; import { ReadLegalTerms } from "./ReadLegalTerms"; import { ReadMetadataChapterDbModel } from "./ReadMetadataChapterDbModel"; import { ReviewResponseModel } from "./ReviewResponseModel"; import { SampleConfigDbModel } from "./SampleConfigDbModel"; export declare const DirectPublishingReadResponseModel: core.serialization.ObjectSchema; export declare namespace DirectPublishingReadResponseModel { interface Raw { read_id: string; created_at_unix: number; updated_at_unix: number; word_count: number; char_count: number; chapters: ReadMetadataChapterDbModel.Raw[]; title?: string | null; author?: string | null; description?: string | null; article_image_url?: string | null; language?: string | null; display_mode?: DirectPublishingReadResponseModelDisplayMode.Raw | null; genre?: DirectPublishingReadResponseModelGenreItem.Raw[] | null; fiction?: string | null; content_type?: string | null; original_file_type?: string | null; target_audience?: DirectPublishingReadResponseModelTargetAudience.Raw | null; mature_content?: boolean | null; origin?: string | null; publication_date?: string | null; isbn?: string | null; ean?: string | null; legal_terms?: ReadLegalTerms.Raw | null; content_guidelines_terms?: ReadLegalTerms.Raw | null; last_updated_from_project_unix?: number | null; publishing_project_id?: string | null; publishing_state?: string | null; publisher_profile_id?: string | null; quality_score?: number | null; publisher?: string | null; copyright?: string | null; subtitle?: string | null; distribution_territories?: string[] | null; edition?: string | null; contributors?: Contributor.Raw[] | null; payout_type?: DirectPublishingReadResponseModelPayoutType.Raw | null; list_price?: number | null; currency?: "usd" | null; original_audio_project_export_id?: string | null; original_audio_document_id?: string | null; series_id?: string | null; volume?: number | null; published_at_unix?: number | null; read_slug?: string | null; preview_audio_object?: PreviewAudioDbModel.Raw | null; sample_config?: SampleConfigDbModel.Raw | null; review?: ReviewResponseModel.Raw | null; voice_id?: string | null; can_use_assistant?: boolean | null; } }