import { type BciStreamOpts, type BciTranscribeParams, type TranscribeSegment, type TranscribeStats } from "../../../schemas/index"; type BciTranscribeReturn = { modelExecutionMs: number; stats?: TranscribeStats; }; export declare function bciTranscribe(params: BciTranscribeParams & { metadata: true; }, requestId?: string): AsyncGenerator; export declare function bciTranscribe(params: BciTranscribeParams, requestId?: string): AsyncGenerator; export declare function bciTranscribeStream(modelId: string, neuralStream: AsyncIterable, metadata: true, opts?: BciStreamOpts, requestId?: string): AsyncGenerator; export declare function bciTranscribeStream(modelId: string, neuralStream: AsyncIterable, metadata?: boolean, opts?: BciStreamOpts, requestId?: string): AsyncGenerator; export {}; //# sourceMappingURL=bci-transcribe.d.ts.map