/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the selected CRUD operation when the user edits or removes recurring events. */ export declare enum CrudOperation { /** * Indicates that the selected recurring event is edited. */ Edit = 0, /** * Indicates that the selected recurring event is removed. */ Remove = 1 }