import { z } from "zod"; export declare const SendCodeSchema: z.ZodObject<{ email: z.ZodString; action: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; action: string; }, { email: string; action: string; }>; export type SendCodeData = z.infer;