import { z } from "zod"; export type TSendVerificationCodeInputSchema = { phoneNumber: string; }; export const ZSendVerificationCodeInputSchema: z.ZodType = z.object({ phoneNumber: z.string(), });