import { type MujianSdk } from '../index.ts'; /** * @interface Config * @description 配置接口 * @property {string} baseURL API 的 URL * @property {string} apiKey API 的 KEY (当前用户唯一) */ export type Config = { openapi: { baseURL: string; apiKey: string; }; }; /** * 读取配置 */ export declare function getConfig( /** @hidden */ this: MujianSdk): Promise;