import { z } from 'zod'; export declare enum LogLevel { AUDIT = "AUDIT", INFO = "INFO", WARNING = "WARNING", ERROR = "ERROR" } export declare const LogPayloadSchema: z.ZodObject<{ message: z.ZodString; meta: z.ZodObject<{ tenant: z.ZodString; jobName: z.ZodString; level: z.ZodEnum; timestamp: z.ZodISODateTime; traceid: z.ZodString; tags: z.ZodOptional>; details: z.ZodOptional>; }, z.core.$strip>; }, z.core.$strip>; export type LogPayload = z.infer; export declare const CONSOLE_LOG_METHOD_LEVELS: Partial>;