import { z } from "zod"; export declare const MonitorConfigSchema: z.ZodObject<{ enabled: z.ZodDefault; live_mode_enabled: z.ZodDefault; allowed_commands: z.ZodOptional>; max_monitors_per_session: z.ZodDefault; max_runtime_ms: z.ZodDefault; batch_max_lines: z.ZodDefault; batch_max_bytes: z.ZodDefault; flush_interval_ms: z.ZodDefault; ring_max_lines: z.ZodDefault; line_max_bytes: z.ZodDefault; pattern_max_length: z.ZodDefault; }, z.core.$strip>; export type MonitorConfig = z.infer;