import { EventEmitter } from '../../stencil-public-runtime'; import { BaseButtonVariant } from '../button/base-button.types'; import { ButtonVariant } from '../button/button'; export type ToggleButtonVariant = Exclude; export declare class ToggleButton { hostElement: HTMLIxToggleButtonElement; /** * Button variant. */ variant: ToggleButtonVariant; /** * Disable the button */ disabled: boolean; /** * Loading button */ loading: boolean; /** * Icon name */ icon?: string; /** * Icon name for the right side of the button * @since 4.0.0 */ iconRight?: string; /** * Show button as pressed */ pressed: boolean; /** * ARIA label that will be set on the native HTML button element * @since 3.2.0 */ ariaLabelButton?: string; /** * Pressed change event */ pressedChange: EventEmitter; private dispatchPressedChange; render(): any; }