import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { LoanTranche } from '../models'; export declare const LoanAccountTranchesApiAxiosParamCreator: (configuration?: Configuration) => { editTranches: (loanAccountId: string, loanTranche: Array, options?: RawAxiosRequestConfig) => Promise; getTranches: (loanAccountId: string, options?: RawAxiosRequestConfig) => Promise; }; export declare const LoanAccountTranchesApiFp: (configuration?: Configuration) => { editTranches(loanAccountId: string, loanTranche: Array, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; getTranches(loanAccountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; }; export declare const LoanAccountTranchesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { editTranches(loanAccountId: string, loanTranche: Array, options?: RawAxiosRequestConfig): AxiosPromise>; getTranches(loanAccountId: string, options?: RawAxiosRequestConfig): AxiosPromise>; }; export declare class LoanAccountTranchesApi extends BaseAPI { editTranches(loanAccountId: string, loanTranche: Array, options?: RawAxiosRequestConfig): Promise>; getTranches(loanAccountId: string, options?: RawAxiosRequestConfig): Promise>; }