/// import { ServerResponse, IncomingMessage } from 'http'; import { HandlerOptions } from './types'; declare type Handler = (handlerOptions: HandlerOptions) => Promise; export declare function withUiHook(handler: Handler): (req: IncomingMessage, res: ServerResponse) => Promise; export * from './types'; export * from './htm';