import { type User } from '@accounts/types';
import { type TwoFactorService } from '../types';
/**
 * Return the user two factor service object
 */
export declare const getUserTwoFactorService: (user: User) => TwoFactorService | null;
