import { twoFactorClient } from 'better-auth/client/plugins';
import { AuthClient } from '../../lib/auth-client';
export type TwoFactorAuthClient = AuthClient<{
    plugins: [ReturnType<typeof twoFactorClient>];
}>;
