import type { Validator, Infer } from "convex/values"; export declare const assertExhaustive: (value: never) => never; export declare const iife: (fn: () => T) => T; /** * Generic function to attempt parsing with proper TypeScript type narrowing */ export declare function attemptToParse>(validator: T, value: unknown): { kind: "success"; data: Infer; } | { kind: "error"; error: unknown; }; /** * Check if the given e-mail address is a valid test e-mail for Resend. * @param email */ export declare function isValidResendTestEmail(email: string): boolean; //# sourceMappingURL=utils.d.ts.map