/**
 * Lazy compilation middleware. Using the same logic as HMR middleware
 */
import { Middleware } from 'koa';
import { Server } from '../index.js';
export declare function lazyCompilation(devSeverContext: Server): Middleware;
