import { HttpMethod } from "@pristine-ts/common"; export declare class MethodMapper { /** * Maps an http request method from express to a known method enum of Pristine. * @param method */ map(method: string): HttpMethod | string; }