import { z } from 'zod'; import type { PuristaExecutableCommand } from '../core/command.js'; export type AddServiceInput = { name?: string; description?: string; version?: string; }; declare const schema: z.ZodObject<{ name: z.ZodString; description: z.ZodString; version: z.ZodDefault; }, z.core.$strip>; export declare const addServiceCommand: PuristaExecutableCommand>; export {}; //# sourceMappingURL=add-service.d.ts.map