import { SharedValue } from "react-native-reanimated"; export interface ScreenScrollContextProps { currentScrollYAnimated: SharedValue; scrollYOffsetAnimated: SharedValue; scrollViewDimensionsAnimated: SharedValue; } export declare const ScreenScrollContextProvider: React.FC>; export declare const useScreenScrollContext: () => ScreenScrollContextProps;