import { SwitchDisplayStyle, WidgetModel } from '../index';
export interface SwitchModel extends WidgetModel {
    /**
     * Default is false
     */
    activated?: boolean;
    label?: string;
    /**
     * Default is false
     */
    labelHtmlEnabled?: boolean;
    /**
     * Specifies if the label is visible. A value of `null` means "automatic", i.e. the label is
     * automatically shown when the 'label' property contains text.
     */
    labelVisible?: boolean;
    tooltipText?: string;
    /**
     * Default is false
     */
    iconVisible?: boolean;
    /**
     * Default is {@link Switch.DisplayStyle.DEFAULT}
     */
    displayStyle?: SwitchDisplayStyle;
    /**
     * Default is false
     */
    tabbable?: boolean;
}
//# sourceMappingURL=SwitchModel.d.ts.map