import React from 'react'; import { ScrollViewProps, ViewProps } from 'react-native'; import Scene from './Scene'; import DotsComponent from './pagination/Dots'; import TabsComponent from './pagination/Tabs'; import { Pagination, PaginationProps } from './types'; declare type Props = { width?: number; paginationLength?: number; pagination?: Pagination; containerProps?: ViewProps; activeColor?: string; inactiveColor?: string; paginationProps?: Omit; } & ScrollViewProps; declare const SceneView: React.FC & { Scene: typeof Scene; Dots: typeof DotsComponent; Tabs: typeof TabsComponent; }; export default SceneView;