import { z } from "zod"; import type { ChannelsConfig } from "./types.channels.js"; export declare const ChannelBotLoopProtectionSchema: z.ZodObject<{ enabled: z.ZodOptional; maxEventsPerWindow: z.ZodOptional; windowSeconds: z.ZodOptional; cooldownSeconds: z.ZodOptional; }, z.core.$strict>; export declare const ChannelsSchema: z.ZodType;