/**手动补充扩展的api */
/**
 * return {
    APIName(data: IRequestType, config = {}): Promise<IResponseType> {
      return request({
        url: `/api-url`,
        method: 'POST',
        data,
        ...config
      })
    }
  }
 */
export declare function useExtApi(): {};
