import { LitElement } from 'lit'; import './tag'; import '../link'; /** * Tag & Tag Group * @slot unnamed - Slot for individual tags and tagsskeleton. */ export declare class TagGroup extends LitElement { static styles: import("lit").CSSResult; /** Text string customization. */ accessor textStrings: { showAll: string; showLess: string; }; /** Limits visible tags (5) behind a "Show all" button. Use only if having more than 5 tags.*/ accessor limitTags: boolean; /** Tag limit visibility. * @internal */ accessor limitRevealed: boolean; /** Tag group filter */ accessor filter: boolean; /** * Size of the tag, `'md'` (default) or `'sm'`. Icon size: 16px. */ accessor tagSize: string; /** * Queries for slotted tags. * @ignore */ accessor tags: Array; private readonly limitCount; render(): import("lit-html").TemplateResult<1>; updated(changedProps: Map): void; private _handleSlotChange; private _updateChildren; private _toggleRevealed; } declare global { interface HTMLElementTagNameMap { 'kyn-tag-group': TagGroup; } } //# sourceMappingURL=tagGroup.d.ts.map