/** * `openlore style-fingerprint` — the codebase style fingerprint's CLI surface * (change: add-codebase-style-fingerprint). * * Prints the DESCRIPTIVE, deterministic idiom profile (the same conclusion the * `get_style_fingerprint` MCP tool returns) so a developer or reviewer can read the house style * without an MCP client. Repository profile by default; `--community ` for a region, `--file * ` for one file. Read-only, offline, never blocks. Descriptive, not prescriptive — it * measures what the code IS, not what it should be. */ import { Command } from 'commander'; export interface StyleFingerprintCliOptions { cwd?: string; community?: string; file?: string; language?: string; json?: boolean; } export declare function runStyleFingerprintCli(opts: StyleFingerprintCliOptions): Promise; export declare const styleFingerprintCommand: Command; //# sourceMappingURL=style-fingerprint.d.ts.map