import { BadRequest } from './BadRequest'; import { Unauthorized } from './Unauthorized'; import { PaymentRequired } from './PaymentRequired'; import { Forbidden } from './Forbidden'; import { NotFound } from './NotFound'; import { MethodNotAllowed } from './MethodNotAllowed'; import { NotAcceptable } from './NotAcceptable'; import { ProxyAuthenticationRequired } from './ProxyAuthenticationRequired'; import { RequestTimeout } from './RequestTimeout'; import { Conflict } from './Conflict'; import { Gone } from './Gone'; import { LengthRequired } from './LengthRequired'; import { PreconditionFailed } from './PreconditionFailed'; import { PayloadTooLarge } from './PayloadTooLarge'; import { URITooLong } from './URITooLong'; import { UnsupportedMediaType } from './UnsupportedMediaType'; import { RangeNotSatisfiable } from './RangeNotSatisfiable'; import { ExpectationFailed } from './ExpectationFailed'; import { ImATeapot } from './ImATeapot'; import { MisdirectedRequest } from './MisdirectedRequest'; import { UnprocessableEntity } from './UnprocessableEntity'; import { Locked } from './Locked'; import { FailedDependency } from './FailedDependency'; import { TooEarly } from './TooEarly'; import { UpgradeRequired } from './UpgradeRequired'; import { PreconditionRequired } from './PreconditionRequired'; import { TooManyRequests } from './TooManyRequests'; import { RequestHeaderFieldsTooLarge } from './RequestHeaderFieldsTooLarge'; import { UnavailableForLegalReasons } from './UnavailableForLegalReasons'; import { InternalServerError } from './InternalServerError'; import { NotImplemented } from './NotImplemented'; import { BadGateway } from './BadGateway'; import { ServiceUnavailable } from './ServiceUnavailable'; import { GatewayTimeout } from './GatewayTimeout'; import { HTTPVersionNotSupported } from './HTTPVersionNotSupported'; import { VariantAlsoNegotiates } from './VariantAlsoNegotiates'; import { InsufficientStorage } from './InsufficientStorage'; import { LoopDetected } from './LoopDetected'; import { BandwidthLimitExceeded } from './BandwidthLimitExceeded'; import { NotExtended } from './NotExtended'; import { NetworkAuthenticationRequired } from './NetworkAuthenticationRequired'; export { BadRequest, Unauthorized, PaymentRequired, Forbidden, NotFound, MethodNotAllowed, NotAcceptable, ProxyAuthenticationRequired, RequestTimeout, Conflict, Gone, LengthRequired, PreconditionFailed, PayloadTooLarge, URITooLong, UnsupportedMediaType, RangeNotSatisfiable, ExpectationFailed, ImATeapot, MisdirectedRequest, UnprocessableEntity, Locked, FailedDependency, TooEarly, UpgradeRequired, PreconditionRequired, TooManyRequests, RequestHeaderFieldsTooLarge, UnavailableForLegalReasons, InternalServerError, NotImplemented, BadGateway, ServiceUnavailable, GatewayTimeout, HTTPVersionNotSupported, VariantAlsoNegotiates, InsufficientStorage, LoopDetected, BandwidthLimitExceeded, NotExtended, NetworkAuthenticationRequired, }; export declare const httpErrorCodes: { 400: typeof BadRequest; 401: typeof Unauthorized; 402: typeof PaymentRequired; 403: typeof Forbidden; 404: typeof NotFound; 405: typeof MethodNotAllowed; 406: typeof NotAcceptable; 407: typeof ProxyAuthenticationRequired; 408: typeof RequestTimeout; 409: typeof Conflict; 410: typeof Gone; 411: typeof LengthRequired; 412: typeof PreconditionFailed; 413: typeof PayloadTooLarge; 414: typeof URITooLong; 415: typeof UnsupportedMediaType; 416: typeof RangeNotSatisfiable; 417: typeof ExpectationFailed; 418: typeof ImATeapot; 421: typeof MisdirectedRequest; 422: typeof UnprocessableEntity; 423: typeof Locked; 424: typeof FailedDependency; 425: typeof TooEarly; 426: typeof UpgradeRequired; 428: typeof PreconditionRequired; 429: typeof TooManyRequests; 431: typeof RequestHeaderFieldsTooLarge; 451: typeof UnavailableForLegalReasons; 500: typeof InternalServerError; 501: typeof NotImplemented; 502: typeof BadGateway; 503: typeof ServiceUnavailable; 504: typeof GatewayTimeout; 505: typeof HTTPVersionNotSupported; 506: typeof VariantAlsoNegotiates; 507: typeof InsufficientStorage; 508: typeof LoopDetected; 509: typeof BandwidthLimitExceeded; 510: typeof NotExtended; 511: typeof NetworkAuthenticationRequired; };