import { t as Configuration } from "./configuration-CnCCjQVu.js"; import { AxiosInstance, RawAxiosRequestConfig } from "axios"; //#region src/client/base.d.ts declare const BASE_PATH: string; declare const COLLECTION_FORMATS: { csv: string; ssv: string; tsv: string; pipes: string; }; interface RequestArgs { url: string; options: RawAxiosRequestConfig; } declare class BaseAPI { protected basePath: string; protected axios: AxiosInstance; protected configuration: Configuration | undefined; constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance); } declare class RequiredError extends Error { field: string; constructor(field: string, msg?: string); } interface ServerMap { [key: string]: { url: string; description: string; }[]; } declare const operationServerMap: ServerMap; //#endregion export { RequiredError as a, RequestArgs as i, BaseAPI as n, operationServerMap as o, COLLECTION_FORMATS as r, BASE_PATH as t }; //# sourceMappingURL=base-ftwm9lz6.d.ts.map