/// /// /// import { IncomingMessage, ServerResponse } from 'http'; import { Http2ServerRequest, Http2ServerResponse } from 'http2'; import { Worker } from 'worker_threads'; export declare function handleRequestWithWorker(worker: Worker, req: Http2ServerRequest | IncomingMessage, res: Http2ServerResponse | ServerResponse): void;