import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { Installment } from '../models'; export declare const InstallmentsApiAxiosParamCreator: (configuration?: Configuration) => { getAll: (dueFrom: string, dueTo: string, offset?: number, limit?: number, paginationDetails?: GetAllPaginationDetailsEnum, productTypeKey?: string, accountState?: GetAllAccountStateEnum, installmentState?: GetAllInstallmentStateEnum, options?: RawAxiosRequestConfig) => Promise; }; export declare const InstallmentsApiFp: (configuration?: Configuration) => { getAll(dueFrom: string, dueTo: string, offset?: number, limit?: number, paginationDetails?: GetAllPaginationDetailsEnum, productTypeKey?: string, accountState?: GetAllAccountStateEnum, installmentState?: GetAllInstallmentStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; }; export declare const InstallmentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { getAll(dueFrom: string, dueTo: string, offset?: number, limit?: number, paginationDetails?: GetAllPaginationDetailsEnum, productTypeKey?: string, accountState?: GetAllAccountStateEnum, installmentState?: GetAllInstallmentStateEnum, options?: RawAxiosRequestConfig): AxiosPromise>; }; export declare class InstallmentsApi extends BaseAPI { getAll(dueFrom: string, dueTo: string, offset?: number, limit?: number, paginationDetails?: GetAllPaginationDetailsEnum, productTypeKey?: string, accountState?: GetAllAccountStateEnum, installmentState?: GetAllInstallmentStateEnum, options?: RawAxiosRequestConfig): Promise>; } export declare const GetAllPaginationDetailsEnum: { readonly On: "ON"; readonly Off: "OFF"; }; export type GetAllPaginationDetailsEnum = (typeof GetAllPaginationDetailsEnum)[keyof typeof GetAllPaginationDetailsEnum]; export declare const GetAllAccountStateEnum: { readonly PartialApplication: "PARTIAL_APPLICATION"; readonly PendingApproval: "PENDING_APPROVAL"; readonly Approved: "APPROVED"; readonly Active: "ACTIVE"; readonly ActiveInArrears: "ACTIVE_IN_ARREARS"; readonly Closed: "CLOSED"; readonly ClosedWrittenOff: "CLOSED_WRITTEN_OFF"; readonly ClosedRejected: "CLOSED_REJECTED"; }; export type GetAllAccountStateEnum = (typeof GetAllAccountStateEnum)[keyof typeof GetAllAccountStateEnum]; export declare const GetAllInstallmentStateEnum: { readonly Pending: "PENDING"; readonly Late: "LATE"; readonly Paid: "PAID"; readonly PartiallyPaid: "PARTIALLY_PAID"; readonly Grace: "GRACE"; }; export type GetAllInstallmentStateEnum = (typeof GetAllInstallmentStateEnum)[keyof typeof GetAllInstallmentStateEnum];