/** * Stub Commands - Placeholder implementations for Milestone 2-5 commands * These will be fully implemented in their respective tasks */ import { Command } from 'commander'; import { ForgeCommand } from './base.js'; export declare class StubCommand extends ForgeCommand { private commandName; constructor(program: Command, commandName: string); register(): void; execute(): Promise; } export declare function createStubCommand(name: string, description: string): (program: Command) => StubCommand; //# sourceMappingURL=stubs.d.ts.map