export declare class URLRequestMethod extends Object {
    static POST: string;
    static GET: string;
    static PUT: string;
    static DELETE: string;
    static HEAD: string;
    static OPTIONS: string;
    constructor();
}
