import { EventEmitter } from "../../stencil-public-runtime"; /** * Chip component that is used to display selected value in a listing. Gives also ability to remove the chip. * * Has selected and removable attributes that can be used to display the chip in selected state and also to remove the chip. * @slot default - Chip content * @csspart chip-base The container for the chip * @csspart chip-icon The icon for the close button * @csspart chip-content The content for the chip */ export declare class KlevuChip { #private; /** * Selected state of the chip */ selected: boolean; /** * Removable state of the chip */ removable: boolean; /** * Event that is fired when chip is removed */ klevuChipRemove: EventEmitter; render(): any; }