import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const CommunicationUncheckedCreateWithoutUserInputObjectSchema: z.ZodType; export declare const CommunicationUncheckedCreateWithoutUserInputObjectZodSchema: z.ZodObject<{ id: z.ZodOptional; patientId: z.ZodNumber; channel: z.ZodEnum<["sms", "voice"]>; direction: z.ZodEnum<["outbound", "inbound"]>; status: z.ZodEnum<["queued", "sent", "delivered", "failed", "completed", "busy", "no_answer"]>; body: z.ZodNullable>; callDuration: z.ZodNullable>; twilioSid: z.ZodNullable>; createdAt: z.ZodOptional; }, "strict", z.ZodTypeAny, { status: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer"; patientId: number; channel: "sms" | "voice"; direction: "outbound" | "inbound"; createdAt?: Date | undefined; id?: number | undefined; body?: string | null | undefined; callDuration?: number | null | undefined; twilioSid?: string | null | undefined; }, { status: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer"; patientId: number; channel: "sms" | "voice"; direction: "outbound" | "inbound"; createdAt?: Date | undefined; id?: number | undefined; body?: string | null | undefined; callDuration?: number | null | undefined; twilioSid?: string | null | undefined; }>; //# sourceMappingURL=CommunicationUncheckedCreateWithoutUserInput.schema.d.ts.map