import { z } from 'zod'; import { BaseCommand } from './base-command'; declare const flagsSchema: z.ZodObject<{ concurrency: z.ZodDefault; }, "strip", z.ZodTypeAny, { concurrency: number; }, { concurrency?: number | undefined; }>; export declare class Worker extends BaseCommand> { private concurrency; private scalingService; needsCommunityPackages: boolean; needsTaskRunner: boolean; stopProcess(): Promise; constructor(); init(): Promise; initEventBus(): Promise; initOrchestration(): Promise; setConcurrency(): Promise; initScalingService(): Promise; run(): Promise; catch(error: Error): Promise; } export {};