/* SettleMint Next.js Config */ import { NextConfig } from "next"; //#region src/config/with-settlemint.d.ts /** * Options for configuring the SettleMint configuration. */ interface WithSettleMintOptions { /** * Whether to disable the SettleMint configuration. */ disabled?: boolean; } /** * Modifies the passed in Next.js configuration with SettleMint-specific settings. * * @param nextConfig - The original Next.js configuration * @param options - Options for customizing the SettleMint configuration * @returns The modified Next.js configuration * @throws If the SettleMint configuration cannot be read or processed */ declare function withSettleMint(nextConfig: C, { disabled }?: WithSettleMintOptions): Promise; //#endregion export { WithSettleMintOptions, withSettleMint }; //# sourceMappingURL=with-settlemint.d.ts.map