import { z } from 'zod'; export declare namespace GetUserOnlineStatusCommand { const url: "/node/stats/get-user-online-status"; const RequestSchema: z.ZodObject<{ username: z.ZodString; }, "strip", z.ZodTypeAny, { username: string; }, { username: string; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ isOnline: z.ZodBoolean; }, "strip", z.ZodTypeAny, { isOnline: boolean; }, { isOnline: boolean; }>; }, "strip", z.ZodTypeAny, { response: { isOnline: boolean; }; }, { response: { isOnline: boolean; }; }>; type Response = z.infer; } //# sourceMappingURL=get-user-online-status.command.d.ts.map