declare function findNearestPackageData(basedir: string): { type?: "module" | "commonjs"; }; declare function getCachedData(cache: Map, basedir: string, originalBasedir: string): NonNullable | undefined; declare function setCacheData(cache: Map, data: T, basedir: string, originalBasedir: string): void; export { findNearestPackageData, getCachedData, setCacheData };