import type { GetEnumValues } from "../../types/enum/getEnumValues"; /** * HTTP 3xx Redirection Status Codes * Indicates that further action needs to be taken by the user agent in order to fulfill the request */ export declare const HttpRedirectionStatus: { /** Multiple options for the resource from which the client may choose */ readonly AMBIGUOUS: 300; /** Resource has been permanently moved to another URI */ readonly MOVED_PERMANENTLY: 301; /** Resource temporarily resides under a different URI */ readonly FOUND: 302; /** Response to the request can be found under another URI using GET */ readonly SEE_OTHER: 303; /** Resource has not been modified since last requested */ readonly NOT_MODIFIED: 304; /** Resource temporarily moved to another URI, using same HTTP method */ readonly TEMPORARY_REDIRECT: 307; /** Resource has been permanently moved to another URI, using same HTTP method */ readonly PERMANENT_REDIRECT: 308; }; export type HttpRedirectionStatus = GetEnumValues;