import { BaseTranslator } from '../BaseTranslator';
export declare class TartuNLPTranslator extends BaseTranslator {
    static readonly translatorName = "TartuNLPTranslator";
    static isSupportedAutoFrom(): boolean;
    static getSupportedLanguages(): string[];
    getLengthLimit(): number;
    getRequestsTimeout(): number;
    checkLimitExceeding(text: string | string[]): number;
    translate(text: string, from: string, to: string): Promise<string>;
    translateBatch(text: string[], from: string, to: string): Promise<string[]>;
}
