export declare const GET = "GET"; export declare const PUT = "PUT"; export declare const HEAD = "HEAD"; export declare const POST = "POST"; export declare const TRACE = "TRACE"; export declare const PATCH = "PATCH"; export declare const PURGE = "PURGE"; export declare const DELETE = "DELETE"; export declare const CONNECT = "CONNECT"; export declare const OPTIONS = "OPTIONS"; export declare const HTTP_METHODS: string[]; export declare const HTTP_CONTINUE = 100; export declare const HTTP_SWITCHING_PROTOCOLS = 101; export declare const HTTP_PROCESSING = 102; export declare const HTTP_EARLY_HINTS = 103; export declare const HTTP_OK = 200; export declare const HTTP_CREATED = 201; export declare const HTTP_ACCEPTED = 202; export declare const HTTP_NON_AUTHORITATIVE_INFORMATION = 203; export declare const HTTP_NO_CONTENT = 204; export declare const HTTP_RESET_CONTENT = 205; export declare const HTTP_PARTIAL_CONTENT = 206; export declare const HTTP_MULTI_STATUS = 207; export declare const HTTP_ALREADY_REPORTED = 208; export declare const HTTP_IM_USED = 226; export declare const HTTP_MULTIPLE_CHOICES = 300; export declare const HTTP_MOVED_PERMANENTLY = 301; export declare const HTTP_FOUND = 302; export declare const HTTP_SEE_OTHER = 303; export declare const HTTP_NOT_MODIFIED = 304; export declare const HTTP_USE_PROXY = 305; export declare const HTTP_RESERVED = 306; export declare const HTTP_TEMPORARY_REDIRECT = 307; export declare const HTTP_PERMANENTLY_REDIRECT = 308; export declare const HTTP_BAD_REQUEST = 400; export declare const HTTP_UNAUTHORIZED = 401; export declare const HTTP_PAYMENT_REQUIRED = 402; export declare const HTTP_FORBIDDEN = 403; export declare const HTTP_NOT_FOUND = 404; export declare const HTTP_METHOD_NOT_ALLOWED = 405; export declare const HTTP_NOT_ACCEPTABLE = 406; export declare const HTTP_PROXY_AUTHENTICATION_REQUIRED = 407; export declare const HTTP_REQUEST_TIMEOUT = 408; export declare const HTTP_CONFLICT = 409; export declare const HTTP_GONE = 410; export declare const HTTP_LENGTH_REQUIRED = 411; export declare const HTTP_PRECONDITION_FAILED = 412; export declare const HTTP_REQUEST_ENTITY_TOO_LARGE = 413; export declare const HTTP_REQUEST_URI_TOO_LONG = 414; export declare const HTTP_UNSUPPORTED_MEDIA_TYPE = 415; export declare const HTTP_REQUESTED_RANGE_NOT_SATISFIABLE = 416; export declare const HTTP_EXPECTATION_FAILED = 417; export declare const HTTP_I_AM_A_TEAPOT = 418; export declare const HTTP_MISDIRECTED_REQUEST = 421; export declare const HTTP_UNPROCESSABLE_ENTITY = 422; export declare const HTTP_LOCKED = 423; export declare const HTTP_FAILED_DEPENDENCY = 424; export declare const HTTP_TOO_EARLY = 425; export declare const HTTP_UPGRADE_REQUIRED = 426; export declare const HTTP_PRECONDITION_REQUIRED = 428; export declare const HTTP_TOO_MANY_REQUESTS = 429; export declare const HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE = 431; export declare const HTTP_UNAVAILABLE_FOR_LEGAL_REASONS = 451; export declare const HTTP_INTERNAL_SERVER_ERROR = 500; export declare const HTTP_NOT_IMPLEMENTED = 501; export declare const HTTP_BAD_GATEWAY = 502; export declare const HTTP_SERVICE_UNAVAILABLE = 503; export declare const HTTP_GATEWAY_TIMEOUT = 504; export declare const HTTP_VERSION_NOT_SUPPORTED = 505; export declare const HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL = 506; export declare const HTTP_INSUFFICIENT_STORAGE = 507; export declare const HTTP_LOOP_DETECTED = 508; export declare const HTTP_NOT_EXTENDED = 510; export declare const HTTP_NETWORK_AUTHENTICATION_REQUIRED = 511; /** * Metadata key the response decorators record the status they build under. * * Read by anything that describes the application rather than runs it, `@stone-js/openapi` first. * A string, so a reader needs no dependency on this package. */ export declare const RESPONSE_KEY = "@stone-js/http-core/response";