export interface IgnoreEntry { ruleId: string; filePattern: string | null; } export declare function loadIgnoreFile(dir: string): IgnoreEntry[]; /** * Check if a rule should be ignored for a given file path. */ export declare function isIgnored(entries: IgnoreEntry[], ruleId: string, filePath?: string): boolean; export declare function resetIgnoreCache(): void;