declare const useVirtualScroll: ({ data, container, fixedHeight, lineHeight, bufferSize, threshold, }: { data: any; container: any; fixedHeight: boolean; lineHeight: number; bufferSize: number; threshold: number; }) => { translateY: import("vue").ComputedRef; handleScroll: () => void; handleRowMounted: () => void; refreshContainer: () => void; fixedHeight: boolean; calculateScrollY: () => void; visibleData: import("vue").Ref; cachedHeight: import("vue").Ref; cachedScrollY: import("vue").Ref; trs: Map; scrollHeight: import("vue").ComputedRef; }; export default useVirtualScroll;