#!/usr/bin/env node /** * SF-ArchGuard CLI * * Usage: * sf-archguard [options] * sf-archguard --config archguard.yml --format console --verbose * sf-archguard --format junit --output report.xml */ import { report } from './reporters/index.js'; import { AnalysisResult } from './types.js'; export interface CliDependencies { analyze: (options: { projectRoot: string; configPath?: string; verbose?: boolean; }) => Promise; report: typeof report; logError: (message: string) => void; } export declare function runCli(argv: string[], dependencies?: CliDependencies): Promise; //# sourceMappingURL=cli.d.ts.map