import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AssetTranscriptionWord } from "./AssetTranscriptionWord"; export declare const AssetTranscription: core.serialization.ObjectSchema; export declare namespace AssetTranscription { interface Raw { language_code: string; text: string; words: AssetTranscriptionWord.Raw[]; } }