import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { ApiLoginResponse, ApiUserinfo, SignupParams, UserInfo2Params, UserInfoParams } from '../_models'; export declare const // --- title start getAuth: (axiosInstance?: AxiosInstance) => { signup: (params?: SignupParams, options?: AxiosRequestConfig) => Promise>; userInfo2: (params?: UserInfo2Params, options?: AxiosRequestConfig) => Promise>; userInfo: (params?: UserInfoParams, options?: AxiosRequestConfig) => Promise>; }; export type SignupResult = AxiosResponse; export type UserInfo2Result = AxiosResponse; export type UserInfoResult = AxiosResponse;