import { Severity } from '../types'; export interface ScanOptions { format?: 'console' | 'json' | 'sarif'; failOn?: Severity; baseline?: boolean; saveBaseline?: boolean; autofix?: boolean; root?: string; } /** * Execute the `health scan` command. */ export declare function runScan(options: ScanOptions): Promise; //# sourceMappingURL=scan.d.ts.map