/** * Enum representing the status of Silent Authentication. */ declare enum SilentAuthStatus { /** * Silent Authentication has been completed successfully. */ COMPLETED = "completed", /** * Silent Authentication has failed. */ FAILED = "failed", /** * The user has rejected Silent Authentication. */ USER_REJECTED = "user_rejected", /** * Silent Authentication has expired. */ EXPIRED = "expired", /** * An action is pending for Silent Authentication. */ ACTION_PENDING = "action_pending" } export { SilentAuthStatus };