import { z } from 'zod'; import type { PuristaExecutableCommand } from '../core/command.js'; export type AddCommandInput = z.input; declare const schema: z.ZodObject<{ name: z.ZodString; description: z.ZodString; serviceName: z.ZodString; serviceVersion: z.ZodString; responseEventName: z.ZodOptional>>; }, z.core.$strip>; export declare const addCommandCommand: PuristaExecutableCommand>; export {}; //# sourceMappingURL=add-command.d.ts.map