import * as react_jsx_runtime from 'react/jsx-runtime'; import { ReactNode } from 'react'; type TwoFAApp = { name: string; icon?: ReactNode; qrNode?: ReactNode; }; type TwoFASetupFormProps = { title?: string; apps?: TwoFAApp[]; qrCodeNode?: ReactNode; onVerify: (token: string) => Promise; onSetupLater?: () => void; required?: boolean; className?: string; }; declare function TwoFASetupForm({ title, apps, qrCodeNode, onVerify, onSetupLater, required, className, }: TwoFASetupFormProps): react_jsx_runtime.JSX.Element; export { type TwoFAApp, TwoFASetupForm, type TwoFASetupFormProps };