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; onFocusoutPrevented: (event: CustomEvent) => void; titleId: Ref; bodyId: Ref; closed: Ref; style: import("vue").ComputedRef; overlayDialogStyle: import("vue").ComputedRef; rendered: Ref; visible: Ref; zIndex: Ref; };