import type { AxiosRequestConfig } from "axios"; /** * This client is necessary only so that we can set the base url for our api and it's generated sdk * I'm sure there is a better way.. * See: https://www.kubb.dev/plugins/swagger-client/client#default-client */ export type RequestConfig = { method: "get" | "put" | "patch" | "post" | "delete"; url: string; params?: unknown; data?: TVariables; responseType?: "arraybuffer" | "blob" | "document" | "json" | "text" | "stream"; signal?: AbortSignal; headers?: AxiosRequestConfig["headers"]; }; export declare const axiosInstance: import("axios").AxiosInstance; export declare const axiosClient: (config: RequestConfig) => Promise; export default axiosClient;