import React from "react"; import type { ScrollViewProps } from "react-native"; import { ScrollView as RNScrollView } from "react-native"; export type TabScrollViewProps = ScrollViewProps & { index: number; }; export declare const TabScrollView: (props: TabScrollViewProps & { ref?: React.Ref; }) => React.ReactElement; //# sourceMappingURL=scroll-view.d.ts.map