import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const StaffCreateManyInputObjectSchema: z.ZodType; export declare const StaffCreateManyInputObjectZodSchema: z.ZodObject<{ id: z.ZodOptional; userId: z.ZodNumber; name: z.ZodString; email: z.ZodNullable>; role: z.ZodString; phone: z.ZodNullable>; createdAt: z.ZodOptional; }, "strict", z.ZodTypeAny, { userId: number; name: string; role: string; createdAt?: Date | undefined; id?: number | undefined; email?: string | null | undefined; phone?: string | null | undefined; }, { userId: number; name: string; role: string; createdAt?: Date | undefined; id?: number | undefined; email?: string | null | undefined; phone?: string | null | undefined; }>; //# sourceMappingURL=StaffCreateManyInput.schema.d.ts.map