import { z } from 'zod'; import type { PuristaExecutableCommand } from '../core/command.js'; declare const schema: z.ZodObject<{ responseEventName: z.ZodOptional>>; name: z.ZodString; description: z.ZodString; serviceName: z.ZodString; serviceVersion: z.ZodString; workerName: z.ZodString; workerDescription: z.ZodString; workerMode: z.ZodDefault>; intervalMs: z.ZodOptional>; maxParallelHandlers: z.ZodDefault>; createProducer: z.ZodDefault>; producerCommandName: z.ZodOptional>>; producerCommandDescription: z.ZodOptional>>; producerResponseEventName: z.ZodOptional>>; }, z.core.$strip>; export type AddQueueInput = z.input; export declare const addQueueCommand: PuristaExecutableCommand>; export {}; //# sourceMappingURL=add-queue.d.ts.map