/**
 * Gets the nearest "node_modules" folder by walking up from start path.
 */
declare function findFolderUp(startPath: string, endFileNames?: string[], endDirectoryNames?: string[]): string | undefined;

export { findFolderUp };
