import { FormProps } from './FormProps'; export type CommercialLendingInputs = { first_name: string; last_name: string; email: string; General_Business_Phone_SFDC2__c: string; Company_NMLS_ID__c: string; Business_Name__c: string; Property_Zip__c: string; Annual_Gross_Revenue__c: string; Time_in_Business__c: string; Lead_Type__c: string; Type_of_Equipment_Finance__c: string; Asset_Class__c: string; Loan__c: string; Requested_loan_amount_and_leverage__c: string; }; export declare const CommercialLending: ({ icon, children, onSubmit, disclosure, variant: fullVariant, headline, callToAction, validateEmail, onValidate, description, id, }: FormProps) => import("react").JSX.Element;