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