import * as react_jsx_runtime from 'react/jsx-runtime'; /** The three lifecycle states of a loan application in the client CRM. */ type LoanApplicationBadgeStatus = "SENT" | "IN_PROGRESS" | "COMPLETED"; interface LoanApplicationBadgeProps { /** Loan application lifecycle status. */ status: LoanApplicationBadgeStatus; /** Optional extra class names applied to the Badge element. */ className?: string; } /** * Inline badge showing the lifecycle state of a loan application. * * Used in the Backoffice Client CRM table `Name` cell to surface which * clients have an active loan application and where they are in the process. */ declare function LoanApplicationBadge({ status, className, }: LoanApplicationBadgeProps): react_jsx_runtime.JSX.Element; export { LoanApplicationBadge, type LoanApplicationBadgeProps, type LoanApplicationBadgeStatus };