import { NextConfig } from "next"; //#region src/next.d.ts /** * A Next.js configuration function that integrates Powerlines into the build process. * * @see https://nextjs.org/docs/api-reference/next.config.js/introduction * * @example * ```js * // next.config.js * import withPowerlines from '@powerlines/unplugin/next' * * export default withPowerlines({ * reactStrictMode: true, * }) * ``` * * @param options - The Next.js configuration to merge with the Powerlines configuration. * @returns The merged Next.js configuration. */ declare function withPlugin(options: NextConfig): NextConfig; //#endregion export { withPlugin as default, withPlugin }; //# sourceMappingURL=next.d.cts.map