///
import { ViewStyle } from 'react-native';
import { CustomScrollViewRef } from './types';
type Props = {
horizontal?: boolean;
children: React.ReactNode;
style?: ViewStyle;
contentContainerStyle?: ViewStyle;
scrollDuration?: number;
onScroll?: (event: {
nativeEvent: {
contentOffset: {
y: number;
x: number;
};
};
}) => void;
};
export declare const CustomScrollView: import("react").ForwardRefExoticComponent>;
export {};