import { IModalRenderlessParams } from '@/types'; export declare const MsgQueue: IModalRenderlessParams['vm'][]; export declare const computedIsMsg: () => (props: IModalProps) => boolean; export declare const computedBoxStyle: ({ props, isMobileFirstMode }: Pick) => () => { width?: string | number | undefined; height?: string | number | undefined; }; export declare const watchValue: (api: IModalApi) => (visible: boolean) => void; export declare const watchVisible: ({ api, props }: { api: any; props: any; }) => (visible: any) => void; export declare const created: ({ api, props, state }: Pick) => () => void; export declare const mounted: ({ api, parent, props, isMobileFirstMode, state }: Pick) => () => void; export declare const beforeUnmouted: ({ api, parent, isMobileFirstMode }: Pick) => () => void; export declare const selfClickEvent: ({ api, parent, props }: Pick) => (event: MouseEvent) => void; export declare const mouseEnterEvent: () => () => void; export declare const mouseLeaveEvent: ({ api, props }: Pick) => () => void; export declare const updateZindex: ({ state, props }: Pick) => () => void; export declare const handleEvent: ({ api, emit, parent, props, isMobileFirstMode }: Pick) => (type: string, event: Event, options?: any[]) => void; export declare const closeEvent: (api: IModalApi) => (event: PointerEvent) => void; export declare const confirmEvent: ({ api, state }: Pick) => (event: PointerEvent) => void; export declare const cancelEvent: (api: IModalApi) => (event: PointerEvent) => void; export declare const open: ({ api, emit, nextTick, parent, props, state, isMobileFirstMode }: Pick) => () => void; export declare const addMsgQueue: ({ api, parent }: Pick) => () => void; export declare const removeMsgQueue: ({ api, parent }: Pick) => () => void; export declare const updateStyle: ({ nextTick, props }: Pick) => () => void; export declare const close: ({ emit, parent, props, state }: Pick) => (type: string) => void; export declare const handleGlobalKeydownEvent: (api: IModalApi) => (event: KeyboardEvent) => void; export declare const handleHashChange: (api: IModalApi) => () => void; export declare const getBox: ({ vm }: Pick) => () => IModalRenderlessParams; export declare const maximize: ({ api, nextTick, props, state, isMobileFirstMode }: Pick) => () => Promise; export declare const revert: ({ api, nextTick, state, isMobileFirstMode }: Pick) => () => Promise; export declare const toggleZoomEvent: ({ api, emit, parent, state, isMobileFirstMode }: Pick) => (event: PointerEvent) => Promise; export declare const mousedownEvent: ({ api, nextTick, props, state, emit, isMobileFirstMode }: Pick) => (event: MouseEvent) => void; export declare const updateFormTip: (parent: IModalRenderlessParamUtils) => void; export declare const dragEvent: ({ api, emit, parent, props, state }: Pick) => (event: MouseEvent) => void; export declare const resetFormTip: (parent: IModalRenderlessParamUtils, isFormReset?: boolean) => void; export declare const resetDragStyle: (api: IModalApi) => () => void; export declare const showScrollbar: (lockScrollClass: any) => () => void; export declare const hideScrollbar: (lockScrollClass: any) => () => void;