/** Resolve a package entry only when it belongs to the requesting project. */ export declare function resolveFromProject(projectDir: string, packageName: string, resolutionSpecifier: string): string | null; /** Check whether a package entry resolves from the requesting project. */ export declare function canResolveFromProject(projectDir: string, packageName: string, resolutionSpecifier: string): boolean;