import { AxiosInstance } from 'axios';
interface SpeechRecognizeArgs {
    file: File;
    language?: 'ru-RU' | 'en-US';
    profanity?: boolean;
    model?: 'general' | 'callcenter' | 'media' | 'ivr';
    sampleRate?: number;
    channelsCount?: number;
    accessToken?: string;
}
export declare function post_speech_recognize(client: AxiosInstance, args: SpeechRecognizeArgs): Promise<string[]>;
export {};
