import { AxiosRequestConfig } from "axios"; export declare type APIQueryParams = Record; export declare type APIUrlParams = Record; export declare type APIRequestConfig = AxiosRequestConfig; export declare type APIResponse = any; export declare type Endpoint = (queryParams?: T, urlParams?: T2, requestConfig?: APIRequestConfig) => Promise; export interface Endpoints { [x: string]: Endpoint; }