import { VNode, Ref } from 'vue'; export interface Instance { vm: VNode; tag: Ref | HTMLElement; countTag: Ref | HTMLElement; setContent(content: string): void; setShow(show: boolean): void; resetPosition(): void; remove(): void; } interface Props { tag: HTMLElement; countTag: HTMLElement; content: string | Ref; split: boolean; dropShow: boolean; } interface Options { tipShow: boolean; props: Props; changeTipShow(status: boolean): void; tipHandle(str: string): void; } declare const TipModalHandle: (options: Options) => Instance; export default TipModalHandle;