/** * Resolves the filesystem path for a package identified by its depPath. * * For local virtual stores, the path is constructed directly. * For global virtual stores (where virtualStoreDir is outside modulesDir), * symlinks are resolved to find the actual store location. */ export declare function resolvePackagePath(opts: { depPath: string; name: string; alias: string; virtualStoreDir: string; virtualStoreDirMaxLength: number; modulesDir?: string; parentDir?: string; }): string;