import * as z from 'zod'; export declare const CronJobLogInputSchema: z.ZodObject<{ id: z.ZodNumber; jobName: z.ZodString; status: z.ZodString; startedAt: z.ZodDate; completedAt: z.ZodNullable>; durationMs: z.ZodNullable>; errorMessage: z.ZodNullable>; }, "strict", z.ZodTypeAny, { status: string; id: number; jobName: string; startedAt: Date; completedAt?: Date | null | undefined; durationMs?: number | null | undefined; errorMessage?: string | null | undefined; }, { status: string; id: number; jobName: string; startedAt: Date; completedAt?: Date | null | undefined; durationMs?: number | null | undefined; errorMessage?: string | null | undefined; }>; export type CronJobLogInputType = z.infer; //# sourceMappingURL=CronJobLog.input.d.ts.map