import type { GetEnumValues } from "../../types/enum/getEnumValues"; /** * HTTP 5xx Server Error Status Codes * Indicates that the server failed to fulfill a valid request */ export declare const HttpServerErrorStatus: { /** Server encountered an unexpected condition that prevented it from fulfilling the request */ readonly INTERNAL_SERVER_ERROR: 500; /** Server does not support the functionality required to fulfill the request */ readonly NOT_IMPLEMENTED: 501; /** Server received an invalid response from the upstream server */ readonly BAD_GATEWAY: 502; /** Server is temporarily unable to handle the request due to being overloaded or down for maintenance */ readonly SERVICE_UNAVAILABLE: 503; /** Server did not receive a timely response from the upstream server */ readonly GATEWAY_TIMEOUT: 504; /** Server does not support the HTTP protocol version used in the request */ readonly HTTP_VERSION_NOT_SUPPORTED: 505; }; export type HttpServerErrorStatus = GetEnumValues;