/** * Marketplace manifest normalization helpers. * Extracted from marketplace.ts for max-lines compliance. */ import type { MarketplaceManifest } from "./types"; /** * Resolves the marketplace manifest path within a cloned marketplace directory. */ export declare function resolveManifestPath(dir: string): Promise; /** * Normalizes a marketplace manifest that may use the legacy array format * (with `source` field) into the standard Record format (with `packagePath`). */ export declare function normalizeManifest(raw: Record): MarketplaceManifest; //# sourceMappingURL=marketplaceHelpers.d.ts.map