export declare type HttpOptions = {
    method: HttpMethod;
    body?: string;
    headers?: any;
};
export declare type HttpMethod = 'GET' | 'PUT' | 'POST' | 'DELETE';
