import { BasicYoudaoConfig } from '../../type'; declare const config: BasicYoudaoConfig; /** * 设置翻译配置 * @param configProp */ export declare function setYoudaoConfig(configProp: typeof config): void; /** * 翻译多个文本到单个语言的具体实现 */ export declare function translateByYoudao(props: { texts: string[]; from: string; to: string; }): Promise<{ success: Record; error: Record; textErrorMsg: Record; }>; export {};