import { APIResource } from "../../../core/resource.js"; import * as LanguageAPI from "./language/language.js"; import { BaseLanguage, Language, LanguageCreateParams, LanguageDeleteParams, LanguageDeleteResponse, LanguageGetParams, LanguageUpdateParams } from "./language/language.js"; import { PagePromise, SinglePage } from "../../../core/pagination.js"; import { RequestOptions } from "../../../internal/request-options.js"; export declare class BaseCaptions extends APIResource { static readonly _key: readonly ['stream', 'captions']; /** * Lists the available captions or subtitles for a specific video. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const caption of client.stream.captions.get( * 'ea95132c15732412d22c1476fa83f27a', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * )) { * // ... * } * ``` */ get(identifier: string, params: CaptionGetParams, options?: RequestOptions): PagePromise; } export declare class Captions extends BaseCaptions { language: LanguageAPI.Language; } export type CaptionsSinglePage = SinglePage; export interface Caption { /** * Whether the caption was generated via AI. */ generated?: boolean; /** * The language label displayed in the native language to users. */ label?: string; /** * The language tag in BCP 47 format. */ language?: string; /** * The status of a generated caption. */ status?: 'ready' | 'inprogress' | 'error'; } export interface CaptionGetParams { /** * Identifier. */ account_id: string; } export declare namespace Captions { export { type Caption as Caption, type CaptionsSinglePage as CaptionsSinglePage, type CaptionGetParams as CaptionGetParams, }; export { Language as Language, BaseLanguage as BaseLanguage, type LanguageDeleteResponse as LanguageDeleteResponse, type LanguageCreateParams as LanguageCreateParams, type LanguageUpdateParams as LanguageUpdateParams, type LanguageDeleteParams as LanguageDeleteParams, type LanguageGetParams as LanguageGetParams, }; } //# sourceMappingURL=captions.d.ts.map