import { z } from 'zod'; export declare namespace GetAllInboundsStatsCommand { const url: "/node/stats/get-all-inbounds-stats"; const RequestSchema: z.ZodObject<{ reset: z.ZodBoolean; }, "strip", z.ZodTypeAny, { reset: boolean; }, { reset: boolean; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ inbounds: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { inbounds: { inbound: string; downlink: number; uplink: number; }[]; }, { inbounds: { inbound: string; downlink: number; uplink: number; }[]; }>; }, "strip", z.ZodTypeAny, { response: { inbounds: { inbound: string; downlink: number; uplink: number; }[]; }; }, { response: { inbounds: { inbound: string; downlink: number; uplink: number; }[]; }; }>; type Response = z.infer; } //# sourceMappingURL=get-all-inbounds-stats.command.d.ts.map