/// import HTTP from 'http'; import HttpMethod from './../../http/enum/method'; import ContentType from './../../http/enum/content-type'; declare function buildMockRequest(url: string | undefined, method: HttpMethod, content_type: ContentType): HTTP.IncomingMessage; export default buildMockRequest;