/** * vskill audit -- local project security auditing command. * * Runs Tier 1 regex-based pattern scanning on a local codebase * to identify security vulnerabilities. */ export interface AuditCommandOptions { json?: boolean; ci?: boolean; report?: string; fix?: boolean; tier1Only?: boolean; exclude?: string; severity?: string; maxFiles?: string; } /** * Execute the audit command. * * @param targetPath - Directory or file to audit (default: ".") * @param opts - CLI options */ export declare function auditCommand(targetPath: string, opts: AuditCommandOptions): Promise;