import { LitElement } from 'lit'; import { SegmentedControlContext } from './SegmentedControl.context'; /** * @slot default - Specify the content of the panel */ export declare class BmSegmentedControlPanel extends LitElement { static styles: import('lit').CSSResult; /** * Specify the value of the panel * @default '' */ value: string; segmentedControlContext: SegmentedControlContext | undefined; render(): import('lit-html').TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bm-segmented-control-panel': BmSegmentedControlPanel; } } //# sourceMappingURL=SegmentedControlPanel.d.ts.map