import type { Ref } from 'vue'; export declare const useTrigger: ({ popupVisible, defaultPopupVisible, show, defaultShow, emit, }: { popupVisible?: Ref; defaultPopupVisible?: Ref; show?: Ref; defaultShow?: Ref; emit: (event: "update:popupVisible" | "popupVisibleChange" | "update:show" | "showChange", visible: boolean) => void; }) => { computedPopupVisible: import("vue").ComputedRef; handlePopupVisibleChange: (visible: boolean) => void; };