import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { IndexRateSource } from '../models'; export declare const IndexRateSourcesApiAxiosParamCreator: (configuration?: Configuration) => { createIndexRateSource: (indexRateSource: IndexRateSource, idempotencyKey?: string, options?: RawAxiosRequestConfig) => Promise; deleteIndexRateSource: (indexRateSourceId: string, options?: RawAxiosRequestConfig) => Promise; getAllIndexRateSources: (options?: RawAxiosRequestConfig) => Promise; getIndexRateSourceById: (indexRateSourceId: string, options?: RawAxiosRequestConfig) => Promise; }; export declare const IndexRateSourcesApiFp: (configuration?: Configuration) => { createIndexRateSource(indexRateSource: IndexRateSource, idempotencyKey?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; deleteIndexRateSource(indexRateSourceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; getAllIndexRateSources(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; getIndexRateSourceById(indexRateSourceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; export declare const IndexRateSourcesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { createIndexRateSource(indexRateSource: IndexRateSource, idempotencyKey?: string, options?: RawAxiosRequestConfig): AxiosPromise; deleteIndexRateSource(indexRateSourceId: string, options?: RawAxiosRequestConfig): AxiosPromise; getAllIndexRateSources(options?: RawAxiosRequestConfig): AxiosPromise>; getIndexRateSourceById(indexRateSourceId: string, options?: RawAxiosRequestConfig): AxiosPromise; }; export declare class IndexRateSourcesApi extends BaseAPI { createIndexRateSource(indexRateSource: IndexRateSource, idempotencyKey?: string, options?: RawAxiosRequestConfig): Promise>; deleteIndexRateSource(indexRateSourceId: string, options?: RawAxiosRequestConfig): Promise>; getAllIndexRateSources(options?: RawAxiosRequestConfig): Promise>; getIndexRateSourceById(indexRateSourceId: string, options?: RawAxiosRequestConfig): Promise>; }