/** Error codes sent by IVS Chat Messaging API. */ export declare const chatErrorCodes: { /** The request is malformed or invalid. */ readonly badRequest: 400; /** The connection has expired. */ readonly unauthorized: 401; /** The connection’s capabilities do not permit this action. */ readonly forbidden: 403; /** The room cannot be found (does not exist). */ readonly notFound: 404; /** The request was rejected during message review. */ readonly notAcceptable: 406; /** The request contains fields that are too large. */ readonly payloadTooLarge: 413; /** The application has exceeded rate limits. */ readonly tooManyRequests: 429; /** This is returned for a general error. */ readonly internalServerError: 500; }; //# sourceMappingURL=errors.d.ts.map