import { IncomingHttpHeaders } from "http"; export declare class HttpHeadersMapper { /** * Maps the headers of an express http request to the headers of a Pristine request. * @param incomingHttpHeaders */ map(incomingHttpHeaders: IncomingHttpHeaders): { [key: string]: string; }; }