/** * openlore drift command * * Detects spec drift: finds code changes not reflected in specs. * Can be used standalone or as a pre-commit hook. */ import { Command } from 'commander'; import type { DriftResult } from '../../types/index.js'; export declare function kindLabel(kind: string): string; export declare function displaySummary(result: DriftResult): void; export declare function installPreCommitHook(rootPath: string): Promise; export declare function uninstallPreCommitHook(rootPath: string): Promise; export declare const driftCommand: Command; //# sourceMappingURL=drift.d.ts.map