import { z } from 'zod'; export declare namespace BlockIpsCommand { const url: "/node/plugin/nftables/block-ips"; const RequestSchema: z.ZodObject<{ ips: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { ips: { ip: string; timeout: number; }[]; }, { ips: { ip: string; timeout: number; }[]; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ accepted: z.ZodBoolean; }, "strip", z.ZodTypeAny, { accepted: boolean; }, { accepted: boolean; }>; }, "strip", z.ZodTypeAny, { response: { accepted: boolean; }; }, { response: { accepted: boolean; }; }>; type Response = z.infer; } //# sourceMappingURL=block-ips.schema.d.ts.map