import { zod } from "../zod"; export declare namespace mfa { type Totp = zod.infer; namespace Totp { const typeZod: zod.ZodObject<{ key: zod.ZodString; }, zod.z.core.$strip>; const is: (value: any) => value is Totp; type Otp = zod.infer; namespace Otp { const typeZod: zod.ZodString; const is: (value: any) => value is Otp; } } }