export = withTmInitializer;
/**
 * Transpile modules with Next.js Babel configuration
 * @param {string[]} modules
 * @param {{resolveSymlinks?: boolean, debug?: boolean, __unstable_matcher?: (path: string) => boolean}} options
 */
declare function withTmInitializer(modules?: string[], options?: {
    resolveSymlinks?: boolean;
    debug?: boolean;
    __unstable_matcher?: (path: string) => boolean;
}): <T>(nextConfig?: T) => T;
