import type { ObjectDirective } from 'vue'; /** * constants */ declare const PREFIX = "InfiniteScroll"; /** * types */ type Callback = () => void; type CustomHTMLElement = HTMLElement & { [PREFIX]: { onScroll: Callback; }; }; declare const InfiniteScroll: ObjectDirective; export default InfiniteScroll;