import { z } from 'zod'; export declare const AuditLogSchema: z.ZodObject<{ id: z.ZodOptional; action: z.ZodString; actorId: z.ZodNullable>; targetId: z.ZodNullable>; details: z.ZodOptional>; timestamp: z.ZodString; }, "strip", z.ZodTypeAny, { action: string; timestamp: string; id?: number | undefined; actorId?: string | null | undefined; targetId?: string | null | undefined; details?: Record | undefined; }, { action: string; timestamp: string; id?: number | undefined; actorId?: string | null | undefined; targetId?: string | null | undefined; details?: Record | undefined; }>; export type AuditLog = z.infer; //# sourceMappingURL=audit.d.ts.map