export declare namespace HttpMethods { const GET = "GET"; const POST = "POST"; const PUT = "PUT"; const DELETE = "DELETE"; const HEAD = "HEAD"; } export declare namespace HttpHeaders { const CONTENT_TYPE_APPLICATION_JSON: { 'Content-Type': string; }; const CONTENT_TYPE_BINARY: { 'Content-Type': string; }; } export declare namespace HttpStatusCode { const OK = 200; const CONFLICT = 409; const INTERNAL_SERVER_ERROR = 500; }