import type { CSSProperties, Ref } from 'vue'; import type { DialogProps } from './dialog'; export declare const useDialog: (props: DialogProps, targetRef: Ref) => { afterEnter: () => void; afterLeave: () => void; beforeLeave: () => void; handleClose: () => void; onModalClick: () => void; close: () => void; doClose: () => void; onOpenAutoFocus: () => void; onCloseAutoFocus: () => void; onCloseRequested: () => void; titleId: Ref; bodyId: Ref; closed: Ref; style: import("@vue/reactivity").ComputedRef; rendered: Ref; visible: Ref; zIndex: Ref; };