import { FormProps } from '../FormProps'; export type RateTableResultsI = { title: string; tables: RateTableI[]; }; export type RateTableI = { title: string; data: { rate: string; discount: string; monthly_payments: string; }[]; }; export type QuickPricerInputs = { Base_Loan_Amount__c: number; Appraised_Value__c: number; Loan_Purpose__c: string; Cash_Out_Amount__c: string; Interest_Only__c: boolean; Self_Employed__c: boolean; Pledged_Assets__c: boolean; Cross_Collateralization__c: boolean; Representative_FICO__c: string; Months_Reserves__c: number; Underwriting_Document_Type__c: string; Debt_To_Income_Ratio__c: number; Citizenship__c: string; Mortgage_Lates_12: string; Mortgage_Lates_24: string; HousingEventType__c: string; housingEventSeasoning__c: string; bankruptcyType__c: string; Number_of_Properties_Financed__c: number; bankruptcySeasoning__c: string; Zip__c: string; Property_Type__c: string; Occupance__c: string; Units__c: string; Prepayment_Penalty__c: string; Broker_Compensation__c: string; NMLS__c: string; Email_Address__c: string; Cell_Phone__c: string; }; export declare const QuickPricer: ({ icon, children, onSubmit, disclosure, variant: fullVariant, headline, callToAction, id, description, validateEmail, validateNMLS, onValidate, }: FormProps) => import("react").JSX.Element;