import { z } from 'zod'; export declare namespace RemoveUserCommand { const url: "/node/handler/remove-user"; const RequestSchema: z.ZodObject<{ username: z.ZodString; hashData: z.ZodObject<{ vlessUuid: z.ZodString; }, "strip", z.ZodTypeAny, { vlessUuid: string; }, { vlessUuid: string; }>; }, "strip", z.ZodTypeAny, { username: string; hashData: { vlessUuid: string; }; }, { username: string; hashData: { vlessUuid: 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=remove-user.command.d.ts.map