import type { WithNormalizedProps } from "../../global"; export interface SelectionChipEvent { selected: boolean; originalEvent: Event; } interface SelectionChipInput extends Omit { renderBody?: Marko.Body; selected?: boolean; "on-click"?: (event: SelectionChipEvent) => void; } export interface Input extends WithNormalizedProps { } export interface State { selected?: boolean; mounted: boolean; } declare class SelectionChip extends Marko.Component { onCreate(input: Input): void; onMount(): void; handleButtonClick(originalEvent: MouseEvent): void; onInput(input: Input): void; } export default SelectionChip;