import { z } from 'zod'; export declare namespace DropIpsCommand { const url: "/node/handler/drop-ips"; const RequestSchema: z.ZodObject<{ ips: z.ZodArray; }, "strip", z.ZodTypeAny, { ips: string[]; }, { ips: string[]; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ success: z.ZodBoolean; }, "strip", z.ZodTypeAny, { success: boolean; }, { success: boolean; }>; }, "strip", z.ZodTypeAny, { response: { success: boolean; }; }, { response: { success: boolean; }; }>; type Response = z.infer; } //# sourceMappingURL=drop-ips.command.d.ts.map