import type { ApiClient } from '../../core/ApiClient'; import type { HasGetById } from '../../core/types'; import type { TranscriptResponse } from './types'; export declare class TranscriptsApi implements HasGetById { private readonly client; private readonly basePath; constructor(client: ApiClient); /** Triggers audio transcription for a message by dispatching an async job, and marks it as transcribing. */ getById(id: string, headers?: Record): Promise; } //# sourceMappingURL=TranscriptsApi.d.ts.map