import React from 'react';
import { ScrollViewProps } from 'react-native';
/**
 * @description: TabController's Page Carousel
 * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/componentScreens/TabControllerScreen/index.tsx
 * @notes: You must pass `asCarousel` flag to TabController and render your TabPages inside a PageCarousel
 */
declare function PageCarousel(props: ScrollViewProps): React.JSX.Element;
export default PageCarousel;
