import { BasicGoogleConfig } from '../../type';
declare const config: BasicGoogleConfig;
/**
 * 设置翻译配置
 * @param configProp
 */
export declare function setGoogleConfig(configProp: typeof config): void;
export declare const translationClientForTest: import("@google-cloud/translate/build/src/v3").TranslationServiceClient;
/**
 * 翻译多个文本到单个语言的具体实现
 */
export declare function translateByGoogle(props: {
    texts: string[];
    from: string;
    to: string;
}): Promise<{
    success: Record<string, string>;
    error: Record<string, string>;
    textErrorMsg: Record<string, string[]>;
}>;
export {};
