import * as react_jsx_runtime from 'react/jsx-runtime'; /** * A resumable loan application summary — shown when an existing user has one or * more draft applications and must pick which one to continue. Used on the * frontend "Getting Started" screen ahead of the individual/joint choice. */ interface LoanDraftCardProps { applicantName: string; /** Names of any co-applicants — presence implies a joint application. */ coApplicantNames?: string[]; desiredLoanAmount?: number; createdAt: string; onContinue: () => void; className?: string; } declare function LoanDraftCard({ applicantName, coApplicantNames, desiredLoanAmount, createdAt, onContinue, className, }: LoanDraftCardProps): react_jsx_runtime.JSX.Element; export { LoanDraftCard, type LoanDraftCardProps };