export declare enum FoundryHttpStatus { /** 1xx Informational */ continue = 100, switchingProtocols = 101, processing = 102, /** 2xx Success */ ok = 200, created = 201, accepted = 202, noContent = 204, resetContent = 205, partialContent = 206, /** 3xx Redirection */ multipleChoices = 300, movedPermanently = 301, found = 302, seeOther = 303, notModified = 304, temporaryRedirect = 307, permanentRedirect = 308, /** 4xx Client Errors */ badRequest = 400, unauthorized = 401, paymentRequired = 402, forbidden = 403, notFound = 404, methodNotAllowed = 405, notAcceptable = 406, requestTimeout = 408, conflict = 409, gone = 410, lengthRequired = 411, preconditionFailed = 412, payloadTooLarge = 413, uriTooLong = 414, unsupportedMediaType = 415, expectationFailed = 417, teapot = 418, unprocessableEntity = 422, tooManyRequests = 429, /** 5xx Server Errors */ internalServerError = 500, notImplemented = 501, badGateway = 502, serviceUnavailable = 503, gatewayTimeout = 504, httpVersionNotSupported = 505 } export declare const FoundryHttpHeaders: { readonly authorization: "Authorization"; readonly bearer: "Bearer "; readonly noAuth: "No Auth"; readonly contentType: "Content-Type"; readonly applicationJson: "application/json"; readonly multipartFormData: "multipart/form-data"; }; export declare const FoundryNetworkMessages: Record; export declare const DefaultNetworkErrorMessage: string;