How do you implement scrollToIndex using AnimatedLegendList? I'm receiving an error when passing the ref to the component. ``` import { useRef } from 'react'; import { AnimatedLegendList } from "@legendapp/list/reanimated"; import { type LegendListRef } from "@legendapp/list"; export function ReanimatedExample() { const ref = useRef<LegendListRef>(null); return ( <AnimatedLegendList ref={ref} data={data} renderItem={renderItem} /> ); } ```