import { z } from 'zod'; export declare namespace StopXrayCommand { const url: "/node/xray/stop"; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ isStopped: z.ZodBoolean; }, "strip", z.ZodTypeAny, { isStopped: boolean; }, { isStopped: boolean; }>; }, "strip", z.ZodTypeAny, { response: { isStopped: boolean; }; }, { response: { isStopped: boolean; }; }>; type Response = z.infer; } //# sourceMappingURL=stop.command.d.ts.map