import type { RuleCatalogEntry } from "./rule-catalog.js"; export type RuleDeliveryStage = "implementation" | "report" | "review" | "verification"; type StageRelevance = { readonly description: string; readonly topicPatterns: readonly RegExp[]; }; export declare const RULE_DELIVERY_STAGE_RELEVANCE: Readonly>; export declare function ruleDeliveryStageForBlocker(blockerId: string): RuleDeliveryStage; export declare function isRuleRelevantForStage(entry: RuleCatalogEntry, stage: RuleDeliveryStage): boolean; export {};