import React from 'react'; import { View, ScrollView as RNScrollView, ViewStyle, StyleProp } from 'react-native'; import type { Theme } from '../../types'; type ScrollViewProps = React.ComponentProps & { alwaysShowScrollbars?: boolean; children: React.ReactNode; horizontal?: boolean; small?: boolean; scrollViewProps?: React.ComponentProps; style?: StyleProp; theme: Theme; }; declare const _default: React.ComponentType & { theme?: import("@callstack/react-theme-provider").$DeepPartial | undefined; }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & (({ alwaysShowScrollbars, children, horizontal, small, scrollViewProps, style, theme, ...rest }: ScrollViewProps) => React.JSX.Element), {}>; export default _default; //# sourceMappingURL=ScrollView.d.ts.map