import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const SegmentedButton: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'button'; }; /** * Highlights button as active */ active: { type: BooleanConstructor; default: false; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default SegmentedButton;