/** * @reverso/cli * * Command line interface for Reverso CMS. * Provides commands for scanning, development, database management, and more. * * @example * ```bash * # Scan project for data-reverso markers * npx reverso scan * * # Start development server * npx reverso dev * * # Run database migrations * npx reverso migrate * ``` */ export declare const VERSION: any; export { initCommand, scanCommand, devCommand, migrateCommand } from './commands/index.js'; //# sourceMappingURL=index.d.ts.map