/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
export interface MultiSelectTreeCheckableSettings {
    /**
     * When `true`, child nodes are checked automatically.
     *
     * > When you enable this property, use it with [`loadOnDemand`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/multiselecttreecomponent#loadondemand) set to 'false' ([see example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselecttree/checkable-settings)). Otherwise, after expanding a checked node and loading its inner items, the value selected in the widget and the checked items in the drop-down will not be in sync. This scenario is not supported.
     */
    checkChildren?: boolean;
    /**
     * Specifies if on clicking the tree node, the item will be checked or unchecked, or if selection will be performed only on checkbox click.
     */
    checkOnClick?: boolean;
}
