import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime'; /** * A button group that can be used as an alternative to drop-down menus. * * @slot default - One or more `ino-segment-button` */ export declare class InoSegmentGroup implements ComponentInterface { private groupId; el: HTMLInoSegmentGroupElement; /** * Name of the segment group */ name?: string; /** * Value of the segment group */ value?: any; valueChanged(): Promise; /** * Forwards the `checkedChange` events of the `` with its value as the detail. */ valueChange: EventEmitter; handleCheckedChange(ev: CustomEvent): void; /** * Initially updates the checked property of all segment-buttons * in the group according to the initial value of the group. */ componentDidLoad(): Promise; /** * Updates the checked property of the segment-buttons in the group */ private updateButtons; render(): any; }