export declare enum XboxMessageErrorCodes { Debug = "Debug", InvalidConversationType = "InvalidConversationType", MissingMessageParts = "MissingMessageParts", MessageRecipientNotFound = "MessageRecipientNotFound", MessageGroupNotFound = "MessageGroupNotFound", MessageNotFound = "MessageNotFound", ConversationNotFound = "ConversationNotFound", WebsocketAlreadyConnected = "WebsocketAlreadyConnected" } export declare const XboxMessageErrorMessages: Record string)>; export declare class XboxMessageError extends Error { code: XboxMessageErrorCodes; constructor(code: XboxMessageErrorCodes, ...args: any[]); get name(): string; static getMessage(code: XboxMessageErrorCodes, args: any[]): string; }