import type { Severity } from "@hookwarden/engine"; import type { ParsedConfigDocument } from "./schema.js"; export interface ResolvedConfig { readonly fail_on: Severity; readonly format: "text" | "json" | "sarif"; readonly parse_coverage_min: number; readonly suppressions_strict: boolean; readonly baseline_enabled: boolean; readonly baseline_path: string; readonly diff_base: string | null; readonly rules_dir: string | null; readonly scan_tests: boolean; } export declare const CONFIG_DEFAULTS: ResolvedConfig; export declare function resolveConfig(cliFlags: Partial, env: NodeJS.ProcessEnv, fileConfig: ParsedConfigDocument | null): ResolvedConfig; //# sourceMappingURL=precedence.d.ts.map