import React from 'react'; import { type LayoutChangeEvent } from 'react-native'; import Animated, { AnimatedRef } from 'react-native-reanimated'; import { LazyScrollViewProps } from './LazyScrollView'; type Props = Omit & Pick, 'horizontal'> & { ref: AnimatedRef; }; /** * ScrollView to wrap Lazy Children in. */ export declare const useLazyContextValues: ({ offset: injectedOffset, debug, horizontal, ref, }: Props) => { value: { _hasProvider: boolean; scrollValue: import("react-native-reanimated").SharedValue; containerStart: Readonly>; containerEnd: Readonly>; startTrigger: Readonly>; endTrigger: Readonly>; horizontal: import("react-native-reanimated").SharedValue; isScrollUnmounted: import("react-native-reanimated").SharedValue; }; measureScroller: (e: LayoutChangeEvent) => void; }; export {}; //# sourceMappingURL=useLazyContextValues.d.ts.map