import type { Finding, PrescanReport, Severity } from './types';
type EnforcementReport = Pick<PrescanReport, 'counts' | 'findings'>;
export declare function isFindingEnforced(finding: Finding, now?: Date): boolean;
export declare function informationOnlyFindings(report: EnforcementReport, now?: Date): Finding[];
export declare function enforcedCounts(report: EnforcementReport, now?: Date): Record<Severity, number>;
export declare function formatEnforcementDeadline(iso: string): string;
export {};
