import type { IncomingMessage, ServerResponse } from 'node:http'; /** * Returns an HTTP request handler that serves: * - `/agora-sdk.js` → Agora RTC SDK from node_modules * - Everything else → the provided HTML string */ export declare function createWebHandler(html: string): (req: IncomingMessage, res: ServerResponse) => void;