import type { PackageWithPath } from 'find-package-json'; import type { PackageType } from './PackageType.type.js'; import type { UserConfig } from './UserConfig.type.js'; type ConfigData = { data: UserConfig; moduleType: PackageType; location: string; }; export declare function findConfig(projectDir: string, packageConfig: PackageWithPath): Promise; export {};