/**
 * SDLC Accelerate Handler
 *
 * Launches the SDLC Accelerate pipeline — taking a project from idea (or existing
 * codebase) to construction-ready by orchestrating intake → inception → elaboration
 * → construction prep via the sdlc-accelerate skill.
 *
 * Supports --provider to target any spawnable agent CLI, --dangerous to pass the
 * provider's unrestricted-mode flag, and --params for arbitrary provider-specific
 * args. IDE-integrated providers (copilot, cursor, etc.) receive guidance instead.
 *
 * @implements @.aiwg/architecture/decisions/ADR-001-unified-extension-system.md
 * @issue #485
 */
import type { CommandHandler, HandlerContext, HandlerResult } from './types.js';
export declare class SdlcAccelerateHandler implements CommandHandler {
    id: string;
    name: string;
    description: string;
    category: "orchestration";
    aliases: string[];
    execute(ctx: HandlerContext): Promise<HandlerResult>;
    private buildPrompt;
    private spawnAgent;
    private getNotFoundMessage;
    private getHelpText;
}
export declare const sdlcAccelerateHandler: SdlcAccelerateHandler;
//# sourceMappingURL=sdlc-accelerate.d.ts.map