import { LitElement } from 'lit'; import { SegmentedControlContext } from './SegmentedControl.context'; /** * * @fires bm-selected - Dispatched when an item is selected * * @slot default - Specify the items of the list */ export declare class BmSegmentedControlList extends LitElement { static styles: import('lit').CSSResult; segmentedControlContext: SegmentedControlContext | undefined; /** * Necessary for initializing the controlItems array and setting the initial selected value */ private _handleSlotChange; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-segmented-control-list': BmSegmentedControlList; } } //# sourceMappingURL=SegmentedControlList.d.ts.map