import { default as React, FC } from 'react'; export interface MonthlyPaymentCalculatorProps { header?: React.ReactNode | string; bodyCopy?: React.ReactNode | string; variant?: string; disclosure?: React.ReactNode; } export declare const MonthlyPaymentCalculator: FC;