export declare class HttpMethod {
    static GET: string;
    static POST: string;
    static PUT: string;
    static DELETE: string;
    static OPTIONS: string;
    static PATCH: string;
}
