import { z } from 'zod'; export declare namespace GetUsersIpListCommand { const url: "/node/stats/get-users-ip-list"; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ users: z.ZodArray; }, "strip", z.ZodTypeAny, { ip: string; lastSeen: Date; }, { ip: string; lastSeen: string; }>, "many">; }, "strip", z.ZodTypeAny, { userId: string; ips: { ip: string; lastSeen: Date; }[]; }, { userId: string; ips: { ip: string; lastSeen: string; }[]; }>, "many">; }, "strip", z.ZodTypeAny, { users: { userId: string; ips: { ip: string; lastSeen: Date; }[]; }[]; }, { users: { userId: string; ips: { ip: string; lastSeen: string; }[]; }[]; }>; }, "strip", z.ZodTypeAny, { response: { users: { userId: string; ips: { ip: string; lastSeen: Date; }[]; }[]; }; }, { response: { users: { userId: string; ips: { ip: string; lastSeen: string; }[]; }[]; }; }>; type Response = z.infer; } //# sourceMappingURL=get-users-ip-list.command.d.ts.map