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