import { ExecutionContext } from '@nestjs/common'; import { IncomingMessage, ServerResponse } from 'http'; export declare function validatePath(pathname?: string): string; export declare function getReqRes(ctx: ExecutionContext): { req: IncomingMessage; res: ServerResponse; };