import * as react_jsx_runtime from 'react/jsx-runtime'; /** * Segmented toggle bar for switching between the main applicant and * co-applicant(s) in the loan wizard. Returns null when fewer than 2 * applicants are present. */ type ApplicantSwitcherApplicant = { name: string; }; type ApplicantSwitcherProps = { applicants: ApplicantSwitcherApplicant[]; selectedIndex: number; onSelect: (index: number) => void; className?: string; }; declare function ApplicantSwitcher({ applicants, selectedIndex, onSelect, className, }: ApplicantSwitcherProps): react_jsx_runtime.JSX.Element | null; export { ApplicantSwitcher, type ApplicantSwitcherApplicant, type ApplicantSwitcherProps };