import type { OutcomeOptions, PrescanCheck, PrescanOutcome, PrescanReport, ScanContext } from './types'; interface EngineOptions { checkTimeoutMs?: number; } export declare function runPrescan(ctx: ScanContext, checks: PrescanCheck[], options?: EngineOptions): Promise; export declare function decideOutcome(report: Pick, options: OutcomeOptions): PrescanOutcome; export {};