/// /// import type { FlashList } from '@shopify/flash-list'; import type { NativeScrollEvent } from 'react-native'; import type { StickyHeaderSharedProps, StickyHeaderSnapProps } from './StickyHeaderProps'; export declare function useStickyHeaderFlashListScrollProps = FlashList>(props: StickyHeaderSharedProps & StickyHeaderSnapProps): { onMomentumScrollEnd: (e: NativeScrollEvent) => void; onScroll: (e: NativeScrollEvent) => void; onScrollEndDrag: (e: NativeScrollEvent) => void; scrollHeight: number; scrollValue: import("react-native-reanimated").SharedValue; scrollViewRef: import("react").RefObject; };