/** * Scan configuration - Tool defaults, profile mapping, and config resolution */ import { type ScanOptions } from './scan-helpers'; /** * Default scan configuration */ export declare const SCAN_DEFAULTS: { tools: string[]; include: undefined; exclude: undefined; output: { format: string; file: undefined; }; }; /** * Resolves the final scan configuration by merging defaults, * user-provided options, and any profile-based tool selections. * * @param resolvedDir - The directory being scanned * @param options - CLI options from the scan command * @returns The resolved scan configuration */ export declare function resolveScanConfig( resolvedDir: string, options: ScanOptions ): Promise<{ [x: string]: unknown; }>; //# sourceMappingURL=scan-config.d.ts.map