export interface YoudaoConfig {
    key?: string;
    secret?: string;
}
export declare function youdaoTranslate(word: string, originLang: string, targetLang: string, option: YoudaoConfig): Promise<string>;
