export type RateWatchInputs = { updateType: string; updateCadence?: string; loanTerms?: string; hasSmsConsent: boolean; tR1DesiredRate?: string; tR1DiscountPoints?: string; tR1LoanTerm?: string; tR2DesiredRate?: string; tR2DiscountPoints?: string; tR2LoanTerm?: string; tR3DesiredRate?: string; tR3DiscountPoints?: string; tR3LoanTerm?: string; email: string; lastName: string; }; type RateWatchFormProps = { email: string; lastName: string; rateWatchOnSubmit: (values: RateWatchInputs & { email: string; lastName: string; }) => void; toggleModal: () => void; setRateWatchSubmitted?: React.Dispatch>; }; export declare const RateWatchForm: ({ email, lastName, rateWatchOnSubmit, toggleModal, setRateWatchSubmitted, }: RateWatchFormProps) => import("react").JSX.Element; export {};