/** * Next Steps Command - drift next-steps * * Analyzes the current project state and recommends the most relevant * next actions based on project type, patterns found, and current status. * * This is the "what should I do next?" command for new users. */ import { Command } from 'commander'; export interface NextStepsOptions { format?: 'text' | 'json'; verbose?: boolean; } export declare const nextStepsCommand: Command; //# sourceMappingURL=next-steps.d.ts.map