import { Ref } from 'vue'; type ScrollElement = HTMLDivElement | null; interface ScrollReturn { scrollRef: Ref; scrollToBottom: () => Promise; scrollToTop: () => Promise; scrollToBottomIfAtBottom: () => Promise; } export declare function useScroll(): ScrollReturn; export {};