import type { CopilotKitCoreVue } from "./vue-core"; import { TranscriptionErrorCode } from "@copilotkit/shared"; export interface TranscriptionResult { text: string; size: number; type: string; } export interface TranscriptionErrorInfo { code: TranscriptionErrorCode; message: string; retryable: boolean; } export { TranscriptionErrorCode }; export declare class TranscriptionError extends Error { readonly info: TranscriptionErrorInfo; constructor(info: TranscriptionErrorInfo); } export declare function transcribeAudio(core: CopilotKitCoreVue, audioBlob: Blob, filename?: string): Promise; //# sourceMappingURL=transcription-client.d.ts.map