import type { GetEnumValues } from "../../types/enum/getEnumValues"; /** * HTTP 2xx Success Status Codes * Indicates that the client's request was successfully received, understood, and accepted */ export declare const HttpSuccessStatus: { /** Request has succeeded */ readonly OK: 200; /** Request has succeeded and a new resource has been created */ readonly CREATED: 201; /** Request has been accepted for processing, but the processing has not been completed */ readonly ACCEPTED: 202; /** Server returned transformed information from origin server */ readonly NON_AUTHORITATIVE_INFORMATION: 203; /** Server has fulfilled the request but does not need to return any content */ readonly NO_CONTENT: 204; /** Server has fulfilled the request and the client should reset the document view */ readonly RESET_CONTENT: 205; /** Server has fulfilled the partial GET request for the resource */ readonly PARTIAL_CONTENT: 206; }; export type HttpSuccessStatus = GetEnumValues;