import { closePopWindowById, closePopWindowByTag, showPopWindow } from './src/index'; import { type PopWindowInfoProps, type PopWindowProps } from './src/interface'; export { showPopWindow, closePopWindowById, closePopWindowByTag }; export type { PopWindowInfoProps, PopWindowProps }; export declare const usePopWindow: (ctx?: any) => { showPopWindow: (props: PopWindowProps, component?: import("vue").Component, componentProps?: any) => { id: string; close: () => void; }; };