import { LitElement } from 'lit'; /** * Segmented control is used to pick one choice from a set of * closely related choices, and immediately apply that selection. * * @status new * @category action * @slot - Default slot. * * @fires {NordEvent} change - Fired whenever a segmented control item has been checked. */ export default class SegmentedControl extends LitElement { static styles: import("lit").CSSResult[]; private defaultSlot; /** * Controls whether the segmented control expands to fill the width of its container. */ expand: boolean; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-segmented-control': SegmentedControl; } }