import { z } from 'zod'; export declare namespace GetAllOutboundsStatsCommand { const url: "/node/stats/get-all-outbounds-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<{ outbounds: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { outbounds: { downlink: number; uplink: number; outbound: string; }[]; }, { outbounds: { downlink: number; uplink: number; outbound: string; }[]; }>; }, "strip", z.ZodTypeAny, { response: { outbounds: { downlink: number; uplink: number; outbound: string; }[]; }; }, { response: { outbounds: { downlink: number; uplink: number; outbound: string; }[]; }; }>; type Response = z.infer; } //# sourceMappingURL=get-all-outbounds-stats.command.d.ts.map