import { DirectiveFunction, PluginFunction } from 'vue'; export interface Waterfall { (type: string): DirectiveFunction; install: PluginFunction; } export const Waterfall: Waterfall;