import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import globalAxios from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { LoanAccountSchedule } from '../models'; import type { PreviewLoanAccountSchedule } from '../models'; export declare const LoanAccountSchedulePreviewApiAxiosParamCreator: (configuration?: Configuration) => { getPreviewLoanAccountSchedule: (previewLoanAccountSchedule: PreviewLoanAccountSchedule, options?: RawAxiosRequestConfig) => Promise; }; export declare const LoanAccountSchedulePreviewApiFp: (configuration?: Configuration) => { getPreviewLoanAccountSchedule(previewLoanAccountSchedule: PreviewLoanAccountSchedule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; export declare const LoanAccountSchedulePreviewApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { getPreviewLoanAccountSchedule(previewLoanAccountSchedule: PreviewLoanAccountSchedule, options?: RawAxiosRequestConfig): AxiosPromise; }; export declare class LoanAccountSchedulePreviewApi extends BaseAPI { getPreviewLoanAccountSchedule(previewLoanAccountSchedule: PreviewLoanAccountSchedule, options?: RawAxiosRequestConfig): Promise>; }