import { LitElement } from 'lit'; import '../Icon/Icon'; type CttIconName = import('../Icon/Icon').CttIconName; declare global { interface HTMLElementTagNameMap { 'ctt-chip': CttChip; } } export declare class CttChip extends LitElement { static styles: import("lit").CSSResult[]; size: 's' | 'm' | 'l'; shape: 'none' | 'xs' | 's' | 'pill'; removable: boolean; disabled: boolean; selected: boolean; href: string | undefined; icon: CttIconName | undefined; avatarSrc: string | undefined; ariaLabel: string; constructor(); private _handleClick; private _handleRemove; private _handleKeyDown; private _getIconSize; private _renderStartContent; private _renderEndContent; render(): import("lit-html").TemplateResult<1>; } export {};