import { z } from 'zod'; export declare namespace SyncCommand { const url: "/node/plugin/sync"; const RequestSchema: z.ZodObject<{ plugin: z.ZodNullable; uuid: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { uuid: string; config: Record; name: string; }, { uuid: string; config: Record; name: string; }>>; }, "strip", z.ZodTypeAny, { plugin: { uuid: string; config: Record; name: string; } | null; }, { plugin: { uuid: string; config: Record; name: string; } | null; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ accepted: z.ZodBoolean; }, "strip", z.ZodTypeAny, { accepted: boolean; }, { accepted: boolean; }>; }, "strip", z.ZodTypeAny, { response: { accepted: boolean; }; }, { response: { accepted: boolean; }; }>; type Response = z.infer; } //# sourceMappingURL=sync.command.d.ts.map