declare const ErrorCodes: { /** * Operation completed successfully. */ 0: string; /** * Call failed but arguments were incorrect. */ 1: string; /** * Call failed due to invalid arguments. */ 2: string; /** * Call to register an event failed because the event is already registered. */ 3: string; /** * Call to register an event failed because the event name is unknown to the framework. */ 4: string; /** * Call failed because it's not supported in the current context (Meeting or Space, for example). */ 5: string; /** * Call failed because the feature is not supported. */ 6: string; /** * Call failed because the framework has not initialized. Make sure your application waits for the {@link webex.Application.onReady | onReady()} promise to resolve before accessing properties or invoking methods belonging to the framework. */ 7: string; /** * Access to API has been denied, this can be due to rate limit. */ 8: string; /** * Request timed out */ 9: string; /** * Call was rate limited. Listen for the `application:initializeError` event to handle this. */ 10: string; /** * Operation completed successfully. */ SUCCESS: number; /** * Call failed but arguments were incorrect. */ GENERIC_ERROR: number; /** * Call failed due to invalid arguments. */ INVALID_ARGUMENT: number; /** * Call to register an event failed because the event is already registered. */ EVENT_ALREADY_REGISTERED: number; /** * Call to register an event failed because the event name is unknown to the framework. */ EVENT_UNKNOWN: number; /** * Call failed because it's not supported in the current context (Meeting or Space, for example). */ BAD_CONTEXT: number; /** * Call failed because the feature is not supported. */ NOT_SUPPORTED: number; /** * Call failed because the framework has not initialized. Make sure your applications waits for the `onReady()` to resolve before making any method calls to the framework. */ NOT_INITIALIZED: number; /** * Access to API has been denied, this can be due to rate limit. */ ACCESS_DENIED: number; /** * Request timed out */ TIMED_OUT: number; /** * Call was rate limited. Listen for the `application:initializeError` event to handle this. */ RATE_LIMITED: number; }; export default ErrorCodes; //# sourceMappingURL=error.d.ts.map