import { InputProps } from './InputProps'; interface DownPaymentInputProps extends InputProps { salesPrice: number | undefined; downPaymentPercentage: number; setDownPaymentPercentage: (percentage: number) => void; isTypingDownPayment: boolean; setIsTypingDownPayment: (value: boolean) => void; methods: any; } export declare const DownPaymentInput: import('react').ForwardRefExoticComponent>; export {};