import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const DialogButton: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'button'; }; /** * Makes button bold in iOS theme and fill in Material theme, overwrites `strongIos` and `strongMaterial` */ strong: { type: BooleanConstructor; default: false; }; /** * Makes button bold in iOS theme */ strongIos: { type: BooleanConstructor; default: false; }; /** * Makes button fill in Material theme */ strongMaterial: { type: BooleanConstructor; default: false; }; /** * Makes button disabled */ disabled: { type: BooleanConstructor; default: false; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { /** * DialogButton click handler */ click: (e: any) => void; } >; export default DialogButton;