import { TranslateEngine } from "../../type";
export interface GoogleTranslateConfig {
    apiKey: string;
}
export declare function createGoogleTranslateEngine(config: GoogleTranslateConfig): TranslateEngine;
