import type { ScrollViewProps } from 'react-native'; import type { BorderProps, ColorProps, FlexboxProps, LayoutProps, PositionProps, SpaceProps, ExtraProps, OutlineProps, ShadowProps, BackgroundProps, SafeAreaProps, TransformProps, PlatformProps, } from '../../types'; export interface IScrollViewProps extends ScrollViewProps, ColorProps, SpaceProps, LayoutProps, FlexboxProps, PositionProps, BorderProps, ExtraProps, OutlineProps, ShadowProps, BackgroundProps, SafeAreaProps, TransformProps, PlatformProps { /** * Renders components as Box children. Accepts a JSX.Element or an array of JSX.Element. */ children?: JSX.Element | JSX.Element[] | string | any; /** * pass props to contentContainerStyle, and this also resolved NB tokens. */ _contentContainerStyle?: IScrollViewProps; }