import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { FinalTranscriptWithTimestampsWordsItemCharactersItem } from "./FinalTranscriptWithTimestampsWordsItemCharactersItem"; import { FinalTranscriptWithTimestampsWordsItemType } from "./FinalTranscriptWithTimestampsWordsItemType"; export declare const FinalTranscriptWithTimestampsWordsItem: core.serialization.ObjectSchema; export declare namespace FinalTranscriptWithTimestampsWordsItem { interface Raw { text: string; start?: number | null; end?: number | null; type: FinalTranscriptWithTimestampsWordsItemType.Raw; speaker_id?: string | null; logprob: number; characters?: FinalTranscriptWithTimestampsWordsItemCharactersItem.Raw[] | null; channel_index?: number | null; } }