import type { RouterMethod } from 'h3'; import type { FetchOptions } from '../types.js'; /** * 结合 baseURL 发起请求 * * @param path endpoints 配置的 path * @param params 请求参数 * @param method 请求方式,@roshan-labs/http 只支持四种 * @param options $fetch 选项配置 * @returns 接口返回数据 */ export declare const useAuthFetch: (path: string, params: Record | undefined, method: RouterMethod, options?: FetchOptions) => Promise;