export declare const Http: { Status: { Ok: number; Created: number; NoContent: number; NotFound: number; }; Method: { Head: string; Get: string; Post: string; Put: string; Delete: string; }; ContentType: { Json: string; Xml: string; }; }; export declare const isClientError: (statusCode: number) => boolean; export declare const isServerError: (statusCode: number) => boolean; export declare function parseBody(body: string, contentType: string): any;