import { QuaternaryTypes } from '../../utils'; import { FC, ReactNode } from 'react'; export interface BuyDownCalculatorProps { header?: ReactNode | string; body?: ReactNode | string; variant: QuaternaryTypes; disclosure?: ReactNode | string; } export type BuyDownCalculatorInputs = { purchasePrice: number; downpayment: number; dealerContribution: number; manufacturerContributionAmount: number; program: string; fico: string; buydownRate: number; buydownTerm: number; fullTimeCharter: boolean; mooringOutsideContinentalUS: boolean; operatingAccount: boolean; floorplanDealerIncentive: boolean; dealerCommercialDeposit: boolean; vesselOver15Years: boolean; highPerformanceBoats: boolean; retailCheckingAccount: boolean; electricMotorHybrid: boolean; }; export declare const BuyDownCalculator: FC;