import * as react_jsx_runtime from 'react/jsx-runtime'; type ApplicantNavigationBarApplicant = { name: string; }; type ApplicantNavigationBarProps = { applicants: ApplicantNavigationBarApplicant[]; currentIndex: number; /** Ordered list of applicant indices to navigate between. */ displayOrder?: number[]; onPrev?: () => void; onNext?: () => void; /** Called when there is no next applicant (last in order). */ onSaveAndNext?: () => void; saveLabel?: string; className?: string; }; declare function ApplicantNavigationBar({ applicants, currentIndex, displayOrder, onPrev, onNext, onSaveAndNext, saveLabel, className, }: ApplicantNavigationBarProps): react_jsx_runtime.JSX.Element; export { ApplicantNavigationBar, type ApplicantNavigationBarApplicant, type ApplicantNavigationBarProps };