import { ReactiveController, ReactiveElement } from 'lit'; export type TypeMultiSelectable = ReactiveElement & { selectable: 'multi' | 'single' | null; _internals?: ElementInternals; }; export declare function typeMultiSelectable(): ClassDecorator; /** * Responsible for setting the ariaMultiSelectable attribute of an element to indicate whether the element supports multiple selections */ export declare class TypeMultiSelectableController implements ReactiveController { private host; constructor(host: T); hostConnected(): void; hostUpdated(): void; }