import { SvelteComponent } from "svelte"; import "tippy.js/dist/tippy.css"; import "tippy.js/dist/border.css"; import { type Placement } from "tippy.js"; declare const __propDef: { props: { anchor: string | HTMLElement; placement?: Placement; hideOnClick?: boolean; content: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ToolTipProps = typeof __propDef.props; export type ToolTipEvents = typeof __propDef.events; export type ToolTipSlots = typeof __propDef.slots; export default class ToolTip extends SvelteComponent { } export {};