import { RawAudio } from '../audio/AudioUtilities.js';
import { TimelineEntry } from '../utilities/Timeline.js';
export declare function recognize(rawAudio: RawAudio, languageCode: string | undefined, options: DeepgramSTTOptions): Promise<{
    transcript: string;
    timeline: TimelineEntry[];
}>;
export interface DeepgramSTTOptions {
    apiKey?: string;
    model?: string;
    punctuate?: boolean;
}
export declare const defaultDeepgramSTTOptions: DeepgramSTTOptions;
