import { DialogProps, DialogTransition } from "./dialog.js"; import * as vue from "vue"; //#region ../../packages/components/dialog/src/dialog.vue.d.ts declare var __VLS_42: { close: () => void; titleId: string; titleClass: string; }, __VLS_44: {}, __VLS_46: {}, __VLS_49: {}; type __VLS_Slots = {} & { header?: (props: typeof __VLS_42) => any; } & { title?: (props: typeof __VLS_44) => any; } & { default?: (props: typeof __VLS_46) => any; } & { footer?: (props: typeof __VLS_49) => any; }; declare const __VLS_base: vue.DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption, { readonly appendTo: "body"; readonly closeOnClickModal: true; readonly closeOnPressEscape: true; readonly lockScroll: true; readonly modal: true; readonly openDelay: 0; readonly closeDelay: 0; readonly headerAriaLevel: "2"; readonly transition: undefined; readonly alignCenter: undefined; readonly draggable: undefined; readonly overflow: undefined; readonly showClose: true; readonly title: ""; readonly ariaLevel: "2"; }>, { /** @description whether the dialog is visible */visible: vue.Ref; dialogContentRef: vue.Ref; resetPosition: () => void; handleClose: () => void; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, { close: () => void; "update:modelValue": (value: boolean) => void; open: () => void; opened: () => void; closed: () => void; openAutoFocus: () => void; closeAutoFocus: () => void; }, string, vue.PublicProps, Readonly, { readonly appendTo: "body"; readonly closeOnClickModal: true; readonly closeOnPressEscape: true; readonly lockScroll: true; readonly modal: true; readonly openDelay: 0; readonly closeDelay: 0; readonly headerAriaLevel: "2"; readonly transition: undefined; readonly alignCenter: undefined; readonly draggable: undefined; readonly overflow: undefined; readonly showClose: true; readonly title: ""; readonly ariaLevel: "2"; }>>> & { onClose?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; onOpen?: (() => any) | undefined; onOpened?: (() => any) | undefined; onClosed?: (() => any) | undefined; onOpenAutoFocus?: (() => any) | undefined; onCloseAutoFocus?: (() => any) | undefined; }, { title: string; appendTo: string | HTMLElement; transition: DialogTransition; overflow: boolean; closeOnPressEscape: boolean; headerAriaLevel: string; closeOnClickModal: boolean; lockScroll: boolean; modal: boolean; openDelay: number; closeDelay: number; alignCenter: boolean; draggable: boolean; showClose: boolean; ariaLevel: string; }, {}>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: vue.PropType[K]>; } : { type: vue.PropType; required: true; } }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_PrettifyLocal : P[K] }; type __VLS_WithSlots = T & { new (): { $slots: S; }; }; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {}; //#endregion export { _default };