import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime'; /** * A button component that can be used in combination with the ino-segment-group component. * * @slot default - Label of the button */ export declare class InoSegmentButton implements ComponentInterface { private buttonId; el: HTMLInoSegmentButtonElement; /** * Activates the button */ checked: boolean; /** * Disables the button */ disabled: boolean; /** * Slightly decreases the size of the button */ dense: boolean; /** * Name of the element */ name?: string; /** * Value of the element */ value?: string; /** * The type of the internal button in the element. * This can be 'submit', 'reset', or 'button'. * If not specified, the default type is 'submit'. */ type?: string; /** * Emits if the user interacts with the button. * If the button is disabled or checked, the event will not be emitted. */ checkedChange: EventEmitter; private handleClick; render(): any; }