import { type PromptRegistryFileName } from "./prompt-registry.js"; export interface PromptRegistryValidationOptions { strict?: boolean; bypassRationale?: string; } export interface PromptRegistryValidationIssue { severity: "error" | "warning"; path: string; register: PromptRegistryFileName; message: string; } export declare function validatePromptRegistryCoverage(root: string, options?: PromptRegistryValidationOptions): Promise; export declare function readRelevantPromptRegistryChangedPaths(root: string): Promise; export declare function readPromptRegistryEntries(root: string): Promise>; export declare function hasPromptRegistryCoverage(entries: string[], changedPath: string): boolean;