import { z } from 'zod'; export declare namespace BlockIpCommand { const url: "vision/block-ip"; const RequestSchema: z.ZodObject<{ ip: z.ZodString; username: z.ZodString; }, "strip", z.ZodTypeAny, { username: string; ip: string; }, { username: string; ip: string; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ success: z.ZodBoolean; error: z.ZodNullable; }, "strip", z.ZodTypeAny, { success: boolean; error: string | null; }, { success: boolean; error: string | null; }>; }, "strip", z.ZodTypeAny, { response: { success: boolean; error: string | null; }; }, { response: { success: boolean; error: string | null; }; }>; type Response = z.infer; } //# sourceMappingURL=block-ip.command.d.ts.map