export declare const OK = "200"; export declare const Created = "201"; export declare const Accepted = "202"; export declare const NoContent = "204"; export declare const ResetContent = "205"; export declare const BadRequest = "400"; export declare const Unauthorized = "401"; export declare const Forbidden = "403"; export declare const NotFound = "404"; export declare const MethodNotAllowed = "405"; export declare const NotAcceptable = "406"; export declare const RequestTimeout = "408"; export declare const Conflict = "409"; export declare const Unprocessable = "422"; export declare const GeneralError = "500"; export declare const NotImplemented = "501"; export declare const BadGateway = "502"; export declare const ServiceUnavailable = "503"; export declare const GatewayTimeout = "504"; export declare const HTTPStatusCodes: { OK: string; Created: string; Accepted: string; NoContent: string; ResetContent: string; BadRequest: string; Unauthorized: string; Forbidden: string; NotFound: string; MethodNotAllowed: string; NotAcceptable: string; RequestTimeout: string; Conflict: string; Unprocessable: string; GeneralError: string; NotImplemented: string; BadGateway: string; ServiceUnavailable: string; GatewayTimeout: string; }; export type HTTPStatusCode = keyof typeof HTTPStatusCodes; export default HTTPStatusCodes;