import React, { type ComponentType } from 'react'; import type { Animated, ScrollViewProps } from 'react-native'; type ComponentProps = Pick; type ExtendProps = PropsT & { scrollOffset: Animated.Value; onScrollStart?: () => void; onScrollEnd?: () => void; }; declare const withScrollStartEndEvent: (Component: ComponentType) => React.NamedExoticComponent> & React.RefAttributes>>>; export default withScrollStartEndEvent; //# sourceMappingURL=withScrollStartEndEvent.d.ts.map