import { z } from 'zod'; export declare namespace GetInboundStatsCommand { const url: "/node/stats/get-inbound-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<{ inbound: z.ZodString; downlink: z.ZodNumber; uplink: z.ZodNumber; }, "strip", z.ZodTypeAny, { inbound: string; downlink: number; uplink: number; }, { inbound: string; downlink: number; uplink: number; }>; }, "strip", z.ZodTypeAny, { response: { inbound: string; downlink: number; uplink: number; }; }, { response: { inbound: string; downlink: number; uplink: number; }; }>; type Response = z.infer; } //# sourceMappingURL=get-inbound-stats.command.d.ts.map