import React from 'react'; import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; import { NativeScrollEvent, NativeSyntheticEvent } from 'react-native'; declare type Props = { tw: TailwindFn; allowStartFade?: boolean; allowEndFade?: boolean; children?: JSX.Element | JSX.Element[] | Element | string | undefined; fadeSize?: number; fadeColors?: string[]; horizontal?: boolean; onCloseToStart?: React.Dispatch>; onCloseToEnd?: React.Dispatch>; onScroll?: React.Dispatch>>; refreshControl?: JSX.Element; style?: Style; }; declare const FadedScrollView: ({ tw, allowStartFade, allowEndFade, children, fadeSize, fadeColors, horizontal, onCloseToStart, onCloseToEnd, onScroll, refreshControl, style, }: Props) => JSX.Element; export default FadedScrollView;