#!/usr/bin/env node /** * FORGE CLI Entry Point * Main command dispatcher and initialization */ declare class ForgeCLI { private program; private logger; constructor(); private setup; private registerCommands; /** * Display banner (shown on first run or when explicitly requested) */ showBanner(): void; /** * Parse and execute CLI arguments */ run(argv?: string[]): Promise; } export { ForgeCLI }; //# sourceMappingURL=index.d.ts.map