import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CaptionStyleModel } from "./CaptionStyleModel"; import { ProjectCreationMetaResponseModel } from "./ProjectCreationMetaResponseModel"; import { ProjectResponseAccessLevel } from "./ProjectResponseAccessLevel"; import { ProjectResponseAspectRatio } from "./ProjectResponseAspectRatio"; import { ProjectResponseFiction } from "./ProjectResponseFiction"; import { ProjectResponseSourceType } from "./ProjectResponseSourceType"; import { ProjectResponseTargetAudience } from "./ProjectResponseTargetAudience"; import { ProjectState } from "./ProjectState"; import { StudioAgentSettingsModel } from "./StudioAgentSettingsModel"; export declare const ProjectResponse: core.serialization.ObjectSchema; export declare namespace ProjectResponse { interface Raw { project_id: string; name: string; create_date_unix: number; created_by_user_id?: string | null; default_title_voice_ref_id: string; default_paragraph_voice_ref_id: string; default_model_id: string; last_conversion_date_unix?: number | null; can_be_downloaded: boolean; title?: string | null; author?: string | null; description?: string | null; genres?: string[] | null; cover_image_url?: string | null; target_audience?: ProjectResponseTargetAudience.Raw | null; language?: string | null; content_type?: string | null; original_publication_date?: string | null; mature_content?: boolean | null; isbn_number?: string | null; volume_normalization: boolean; state: ProjectState.Raw; access_level: ProjectResponseAccessLevel.Raw; fiction?: ProjectResponseFiction.Raw | null; quality_check_on: boolean; quality_check_on_when_bulk_convert: boolean; creation_meta?: ProjectCreationMetaResponseModel.Raw | null; source_type?: ProjectResponseSourceType.Raw | null; chapters_enabled?: boolean | null; captions_enabled?: boolean | null; caption_style?: CaptionStyleModel.Raw | null; caption_style_template_overrides?: Record | null; public_share_id?: string | null; aspect_ratio?: ProjectResponseAspectRatio.Raw | null; agent_settings?: StudioAgentSettingsModel.Raw | null; default_title_voice_id?: string | null; default_paragraph_voice_id?: string | null; } }