import { z } from 'zod'; export declare namespace GetInboundUsersCountCommand { const url: "/node/handler/get-inbound-users-count"; const RequestSchema: z.ZodObject<{ tag: z.ZodString; }, "strip", z.ZodTypeAny, { tag: string; }, { tag: string; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ count: z.ZodNumber; }, "strip", z.ZodTypeAny, { count: number; }, { count: number; }>; }, "strip", z.ZodTypeAny, { response: { count: number; }; }, { response: { count: number; }; }>; type Response = z.infer; } //# sourceMappingURL=get-inbound-users-count.command.d.ts.map