import * as react_jsx_runtime from 'react/jsx-runtime'; type ApplicantStatus = "active" | "waiting"; interface LoanApplicantInformationProps { name: string; phone: string; email: string; /** "waiting" shows a badge next to the name */ status?: ApplicantStatus; /** When provided, shows an edit button in the top-right corner */ onEdit?: () => void; className?: string; } declare function LoanApplicantInformation({ name, phone, email, status, onEdit, className, }: LoanApplicantInformationProps): react_jsx_runtime.JSX.Element; export { type ApplicantStatus, LoanApplicantInformation, type LoanApplicantInformationProps };