/** * File filtering utilities for context-aware detection */ /** * Check if a file should be skipped based on its path * @param filePath - Path to file * @returns True if file should be skipped */ export declare function shouldSkipFile(filePath: string): boolean; /** * Get the reason why a file should be skipped * @param filePath - Path to file * @returns Skip reason or null if file should not be skipped */ export declare function getSkipReason(filePath: string): string | null; /** * Check if a file is in a test directory * @param filePath - Path to file * @returns True if in test directory */ export declare function isInTestDirectory(filePath: string): boolean; /** * Check if a file is in a documentation directory * @param filePath - Path to file * @returns True if in documentation directory */ export declare function isInDocsDirectory(filePath: string): boolean; //# sourceMappingURL=file-filter.d.ts.map