import { NextConfig } from 'next'; export interface HighlightConfigOptions { uploadSourceMaps?: boolean; configureHighlightProxy?: boolean; apiKey?: string; appVersion?: string; environment?: string; serviceName?: string; sourceMapsPath?: string; sourceMapsBasePath?: string; sourceMapsBackendUrl?: string; } type NextConfigObject = NextConfig; type NextConfigFunction = (phase: string, { defaultConfig }: { defaultConfig: any; }) => NextConfig; type NextConfigAsyncFunction = (phase: string, { defaultConfig }: { defaultConfig: any; }) => Promise; type NextConfigInput = NextConfigObject | NextConfigFunction | NextConfigAsyncFunction; export declare const withHighlightConfig: (config: NextConfigInput, highlightOpts?: HighlightConfigOptions) => Promise; export {}; //# sourceMappingURL=with-highlight-config.d.ts.map