import type { PopupDirection, PopupCallback } from './interface'; import type { Validator, BasicType } from '../../_utils'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; declare const _sfc_main: DefineComponent<{ readonly visible: { readonly required: true; readonly type: BooleanConstructor; readonly default: () => boolean; readonly validator?: Validator | undefined; }; readonly appendToBody: BasicType; readonly showMask: BasicType; readonly maskClose: BasicType; readonly maskBlur: BasicType; readonly zIndex: BasicType; /** * 打开动画开始执行的回调 * * @param { Object } node 元素节点 */ readonly maskBackground: BasicType, string | null>; readonly maskOpacity: BasicType; readonly direction: BasicType, PopupDirection | null>; readonly popupSize: BasicType, string | number | null>; readonly fullscreen: BasicType; readonly padding: BasicType, string | number | null>; readonly onOpen: BasicType, null>; readonly onClose: BasicType, null>; readonly onOpenEnd: BasicType, null>; readonly onCloseEnd: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:visible": (visible: boolean) => boolean; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly boolean; readonly validator?: Validator | undefined; }; readonly appendToBody: BasicType; readonly showMask: BasicType; readonly maskClose: BasicType; readonly maskBlur: BasicType; readonly zIndex: BasicType; /** * 打开动画开始执行的回调 * * @param { Object } node 元素节点 */ readonly maskBackground: BasicType, string | null>; readonly maskOpacity: BasicType; readonly direction: BasicType, PopupDirection | null>; readonly popupSize: BasicType, string | number | null>; readonly fullscreen: BasicType; readonly padding: BasicType, string | number | null>; readonly onOpen: BasicType, null>; readonly onClose: BasicType, null>; readonly onOpenEnd: BasicType, null>; readonly onCloseEnd: BasicType, null>; }>> & { "onUpdate:visible"?: ((visible: boolean) => any) | undefined; }, { readonly onClose: PopupCallback; readonly padding: string | number; readonly zIndex: number; readonly direction: PopupDirection; readonly appendToBody: boolean; readonly fullscreen: boolean; readonly showMask: boolean; readonly maskClose: boolean; readonly maskBlur: boolean; readonly onOpen: PopupCallback; readonly onOpenEnd: PopupCallback; readonly onCloseEnd: PopupCallback; readonly maskBackground: string; readonly maskOpacity: number; readonly popupSize: string | number; }>; export default _sfc_main;