/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { OnChanges } from '@angular/core'; import { MultiSelectTreeComponent } from '../multiselecttree.component'; import * as i0 from "@angular/core"; /** * Configures the MultiSelectTree to show one single summary tag for all selected data items. * When a number is set, the summary tag is shown after the corresponding number of data items are selected (see examples). * See [more information and examples](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/multiselecttreesummarytagdirective). * * @example * ```html * * ``` * * @example * ```html * * ``` * * @remarks * Applied to: {@link MultiSelectTreeComponent}. */ export declare class MultiSelectTreeSummaryTagDirective implements OnChanges { private multiSelectTreeComponent; /** * Sets the number of data items that need to be selected before the summary tag appears. * * @default 0 */ showAfter: number | string; constructor(multiSelectTreeComponent: MultiSelectTreeComponent); ngOnChanges(changes: any): void; private createTagMapper; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }