/** * @drift/cli - Command-line interface for Drift * * This package provides CLI commands: * - drift init: Initialize Drift in a project * - drift scan: Scan codebase for patterns * - drift check: Check for violations * - drift status: Show current drift status * - drift approve: Approve a pattern * - drift ignore: Ignore a pattern * - drift report: Generate reports */ export declare const VERSION: string; export * from './types/index.js'; export * from './ui/index.js'; export { initCommand, scanCommand, checkCommand, statusCommand, approveCommand, ignoreCommand, reportCommand, } from './commands/index.js'; //# sourceMappingURL=index.d.ts.map