/** * 获取查询百度网页翻译接口所需的 token 和 sign * @param text 要查询的文本 */ export default function (text: string): Promise<{ token: any; sign: string; }>;