import { z } from "zod"; export declare const inviteSchema: z.ZodObject<{ email: z.ZodString; displayName: z.ZodOptional; role: z.ZodEnum<["ADMIN", "MANAGER", "USER"]>; phoneNumber: z.ZodEffects, string | undefined, string | undefined>; timeZone: z.ZodOptional; locale: z.ZodOptional; }, "strip", z.ZodTypeAny, { email: string; role: "ADMIN" | "MANAGER" | "USER"; phoneNumber?: string | undefined; timeZone?: string | undefined; locale?: string | undefined; displayName?: string | undefined; }, { email: string; role: "ADMIN" | "MANAGER" | "USER"; phoneNumber?: string | undefined; timeZone?: string | undefined; locale?: string | undefined; displayName?: string | undefined; }>; export type InviteFormValues = z.infer; //# sourceMappingURL=schemas.d.ts.map