/** * NextSpark Next.js Configuration Wrapper * * Wraps Next.js config to provide NextSpark-specific defaults * * @module core/next */ import type { NextConfig } from 'next'; /** * NextSpark wrapper for Next.js configuration * * Provides necessary configuration for NextSpark to work properly, * including transpilePackages for npm mode and webpack customizations. * * @example * ```typescript * // next.config.ts * import { withNextSpark } from '@nextsparkjs/core/next' * * export default withNextSpark({ * // Your custom Next.js config * }) * ``` */ export declare function withNextSpark(userConfig?: NextConfig): NextConfig; //# sourceMappingURL=next.d.ts.map