/** * Find a file in a directory, case-insensitive * * @param {string} filepath * @return {string|undefined} File path with correct case */ export default function findFileCaseInsensitive(filepath: string): string | undefined; /** * Clear cache. */ export declare function clearCache(): void;