/**----------------------------------------------------------------------------------------- * 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 { MultiSelectComponent } from './multiselect.component'; import * as i0 from "@angular/core"; /** * Configures the MultiSelect to show one summary tag for all selected items. * Set a number to display the summary tag after the respective number of items are selected. * [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/summary-tag-mode). * * @example * ```ts-no-run * * ``` * * @example * ```ts-no-run * * ``` */ export declare class SummaryTagDirective implements OnChanges { private multiSelectComponent; /** * Sets the number of selected items after which the summary tag appears. * * @default 0 */ showAfter: number | string; constructor(multiSelectComponent: MultiSelectComponent); ngOnChanges(changes: any): void; private createTagMapper; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }