import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; export declare const CronJobLogCreateInputObjectSchema: z.ZodType; export declare const CronJobLogCreateInputObjectZodSchema: z.ZodObject<{ jobName: z.ZodString; status: z.ZodString; startedAt: z.ZodDate; completedAt: z.ZodNullable>; durationMs: z.ZodNullable>; errorMessage: z.ZodNullable>; }, "strict", z.ZodTypeAny, { status: string; jobName: string; startedAt: Date; completedAt?: Date | null | undefined; durationMs?: number | null | undefined; errorMessage?: string | null | undefined; }, { status: string; jobName: string; startedAt: Date; completedAt?: Date | null | undefined; durationMs?: number | null | undefined; errorMessage?: string | null | undefined; }>; //# sourceMappingURL=CronJobLogCreateInput.schema.d.ts.map