import type { ManifestV1JsonObject } from "../../../core/manifest/v1"; import type { DeepPartial } from "../../../../utils/types"; export type ManifestPatch = DeepPartial>; export declare const updateManifests: (opts: { manifestPath: string; patch: ManifestPatch; }) => Promise;