export declare type HttpMethod = 'GET' | 'POST' | 'PATCH' | 'PUT' | 'DELETE' | 'OPTIONS'; export declare enum EMethods { Get = "GET", Post = "POST", Put = "PUT", Delete = "DELETE" } export declare function replaceNetwork(): void;