import type { Plugin } from "vue"; /** @constant HOPP_UI_OPTIONS A constant representing the key for storing HoppUI plugin options in the global context. */ export declare const HOPP_UI_OPTIONS = "HOPP_UI_OPTIONS"; /** @typedef {Object} HoppUIPluginOptions @property [t] - A function for handling translations for the plugin. @property [onModalOpen] - A callback function that is called when a modal is opened. @property [onModalClose] - A callback function that is called when a modal is closed. */ export type HoppUIPluginOptions = { t?: (key: string) => string; onModalOpen?: () => void; onModalClose?: () => void; }; export declare const plugin: Plugin; export default plugin;