import type { BaseManifest, BundledManifest } from '@pnpm/types'; /** * Picks the subset of manifest fields stored in the package index and normalizes the version. * Used both when writing the index (worker) and when creating a BundledManifest from a fresh fetch. */ export declare function normalizeBundledManifest(manifest: Partial): BundledManifest | undefined;