/** * Spec Command * * CLI interface for spec-driven development operations: * validate, list, and summarize specs from any detected source. */ type SpecCommandAction = 'validate' | 'list' | 'summary'; interface SpecCommandOptions { path?: string; } export declare function specCommand(action: SpecCommandAction, options: SpecCommandOptions): Promise; export {}; //# sourceMappingURL=spec.d.ts.map