/** * Plan Command Module * * Implements show and archive subcommands for plan inspection and management */ /** * Display plan metadata, executive summary, and task statistics */ export declare function showPlan(planId: number): Promise<{ success: boolean; message?: string; }>; /** * Delete a plan permanently from either active or archive directory */ export declare function deletePlan(planId: number, autoConfirm?: boolean): Promise<{ success: boolean; message?: string; }>; /** * Archive a plan by moving it to the archive directory */ export declare function archivePlan(planId: number, autoConfirm?: boolean): Promise<{ success: boolean; message?: string; }>; //# sourceMappingURL=plan.d.ts.map