import { Translations } from '../../types/options';
export declare class AzureTranscript {
    static extract(text: string, finalTranscript: string, isFinal: boolean, translations?: Translations): {
        interimTranscript: string;
        finalTranscript: string;
        newText: string;
    };
}
