import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const Popup: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Allows to open/close Popup and set its initial state */ opened: { type: BooleanConstructor; default: false; }; /** * Enables Popup backdrop (dark semi transparent layer behind) */ backdrop: { type: BooleanConstructor; default: true; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * Popup bg color * * @default 'bg-white dark:bg-black' */ bg?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { /** * Click handler on backdrop element */ backdropclick: (e: any) => void; } >; export default Popup;