/** * * * Segmented control / button group. Groups child buttons with * connected borders and optional radio-group behavior. * * Usage (visual grouping only): * * Left * Center * Right * * * Usage (radio behavior — single selection): * * Direct * Terminal * Release * * * Emits ry:change with { value } when selection changes. */ import { RyElement } from '../core/ry-element.js'; export declare class RyButtonGroup extends RyElement { #private; static get observedAttributes(): string[]; get value(): string; set value(v: string); setup(): void; attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void; } //# sourceMappingURL=ry-button-group.d.ts.map