import Condition from './models/condition'; export interface GetAmountInstallmentsParams { amount: number; max_installment_no_interest: number; max_installments: number; conditions: Condition[]; anticipation_delay: number; payment_method: string; card_brand: string; capture_method: string; } export interface AmountInstallments { installment: number; amount: number; interest_rate: number; } export interface GetAmountInstallmentsResponse { installments: AmountInstallments[]; } declare const getAmountInstallments: ({ amount, max_installment_no_interest, max_installments, conditions, anticipation_delay, payment_method, card_brand, capture_method, }: GetAmountInstallmentsParams) => AmountInstallments[]; export default getAmountInstallments;