import { DialogHeaderProps } from "./dialog-header.js"; import * as vue from "vue"; import { CSSProperties, Ref } from "vue"; //#region ../../packages/components/dialog-header/src/use-dialog-header.d.ts declare const useDialogHeader: (props: DialogHeaderProps, 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: vue.ComputedRef; overlayDialogStyle: vue.ComputedRef; rendered: Ref; visible: Ref; zIndex: Ref; }; //#endregion export { useDialogHeader };