import type { InputConfigWithArrayModules } from "@medusajs/framework/types"; type HttpConfig = NonNullable["http"]>; export type MercurInputConfig = Omit & { projectConfig?: Omit, "http"> & { http?: HttpConfig & { vendorCors?: string; }; mercur?: { /** * Patch file names to skip, e.g. "@medusajs+core-flows@2.18.0.patch". * Each one restores an upstream bug, so only reach for this when a patch * conflicts with your own override. */ disabledPatches?: string[]; }; }; }; export declare function withMercur(config?: MercurInputConfig): InputConfigWithArrayModules; export {};