import { z } from 'zod'; export declare namespace RemoveUsersCommand { const url: "/node/handler/remove-users"; const RequestSchema: z.ZodObject<{ users: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { users: { userId: string; hashUuid: string; }[]; }, { users: { userId: string; hashUuid: 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-users.command.d.ts.map