interface ICheckModulesOption { /** Path to package.json. If not specified, find it from current cwd */ path?: string; /** Check all node_modules instead of just direct dependencies. Default: false */ checkAllNodeModules?: boolean; /** Ignores webpack and babel dependencies. Default: true */ ignoreBabelAndWebpackPackages?: boolean; } export declare function checkModules({ path: userPath, checkAllNodeModules, ignoreBabelAndWebpackPackages }: ICheckModulesOption): import("./types/module-checker-result").default; export { buildExcludeRegexp, buildIncludeRegexp } from './babel-loader-regex-builder';