import { Enum } from '../types/Enum';
export declare class HttpVerb extends Enum {
    static Get: HttpVerb;
    static Put: HttpVerb;
    static Patch: HttpVerb;
    static Post: HttpVerb;
    static Delete: HttpVerb;
    constructor(name: string);
}
