import { c as HttpStatusCategory } from './types-CgWcmsQe.cjs'; declare function isInformational(code: number): boolean; declare function isSuccess(code: number): boolean; declare function isRedirect(code: number): boolean; declare function isClientError(code: number): boolean; declare function isServerError(code: number): boolean; declare function isError(code: number): boolean; /** Returns the numeric HTTP class, even when the specific code is unregistered. */ declare function getCategory(code: number): HttpStatusCategory | null; export { getCategory, isClientError, isError, isInformational, isRedirect, isServerError, isSuccess };