declare function beforeMount(el: any, { value }: { value: any; }): boolean; /** * 所在组件的 VNode 更新时调用 * * el: HTMLElement, binding: VNodeDirective */ declare function updated(el: Record, { value }: { value: any; }): boolean; declare function unmounted(el: any): boolean; declare const _default: { beforeMount: typeof beforeMount; unmounted: typeof unmounted; updated: typeof updated; }; export default _default;