import * as z from 'zod'; export declare const CronJobLogCreateResultSchema: z.ZodObject<{ id: z.ZodNumber; jobName: z.ZodString; status: z.ZodString; startedAt: z.ZodDate; completedAt: z.ZodOptional; durationMs: z.ZodOptional; errorMessage: z.ZodOptional; }, "strip", z.ZodTypeAny, { status: string; id: number; jobName: string; startedAt: Date; completedAt?: Date | undefined; durationMs?: number | undefined; errorMessage?: string | undefined; }, { status: string; id: number; jobName: string; startedAt: Date; completedAt?: Date | undefined; durationMs?: number | undefined; errorMessage?: string | undefined; }>; //# sourceMappingURL=CronJobLogCreateResult.schema.d.ts.map