import { ReactiveController, ReactiveElement } from 'lit'; export type InteractionSelect = ReactiveElement & { interaction?: 'auto' | ('single' | 'multi'); selected: boolean; }; export declare function interactionSelect(): ClassDecorator; /** * responsible for managing the closable behavior of an element */ export declare class InteractionSelectController implements ReactiveController { #private; private host; constructor(host: T); hostConnected(): void; toggle(): void; select(): void; deselect(): void; }