import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { GeneralSetup } from '../models'; export declare const GeneralSetupApiAxiosParamCreator: (configuration?: Configuration) => { getGeneralSetup: (options?: RawAxiosRequestConfig) => Promise; }; export declare const GeneralSetupApiFp: (configuration?: Configuration) => { getGeneralSetup(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; export declare const GeneralSetupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { getGeneralSetup(options?: RawAxiosRequestConfig): AxiosPromise; }; export declare class GeneralSetupApi extends BaseAPI { getGeneralSetup(options?: RawAxiosRequestConfig): Promise>; }