/** * vue-next-animejs * Vue3 directive for animejs * @author maybe */ import animejs from 'animejs'; import { App } from "vue"; declare function install(app: App, options: any): void; declare const _default: { install: typeof install; }; export default _default; export declare type AnimeFn = (par: animejs.AnimeParams) => animejs.AnimeInstance; export declare const anime: AnimeFn;