/// /// import type { FlatList, NativeScrollEvent, ScrollView, SectionList } from 'react-native'; import type { StickyHeaderSharedProps, StickyHeaderSnapProps } from './StickyHeaderProps'; export declare type ScrollComponent = ScrollView | FlatList | SectionList; export declare function useStickyHeaderScrollProps(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; };