import type { ShallowRef } from 'vue'; import type { BarState } from './scrollbar'; interface Options { wrapper: ShallowRef; } export default function (options: Options): (cb: (barState: BarState) => void) => void; export {};