import { z } from 'zod'; export declare namespace GetOutboundStatsCommand { const url: "/node/stats/get-outbound-stats"; const RequestSchema: z.ZodObject<{ tag: z.ZodString; reset: z.ZodBoolean; }, "strip", z.ZodTypeAny, { tag: string; reset: boolean; }, { tag: string; reset: boolean; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ outbound: z.ZodString; downlink: z.ZodNumber; uplink: z.ZodNumber; }, "strip", z.ZodTypeAny, { downlink: number; uplink: number; outbound: string; }, { downlink: number; uplink: number; outbound: string; }>; }, "strip", z.ZodTypeAny, { response: { downlink: number; uplink: number; outbound: string; }; }, { response: { downlink: number; uplink: number; outbound: string; }; }>; type Response = z.infer; } //# sourceMappingURL=get-outbound-stats.command.d.ts.map