import type { NextConfig } from 'next';
import type { ExtractorConfig } from '../extractor/types.js';
import type { PluginConfig } from './types.js';
export default function getNextConfig(pluginConfig: PluginConfig, nextConfig?: NextConfig, extractorConfig?: ExtractorConfig): NextConfig & Partial<NextConfig>;
