import React from 'react'; import Reanimated from 'react-native-reanimated'; interface TabControllerContext { initialIndex?: number; selectedIndex?: number; items?: any[]; asCarousel?: boolean; containerWidth: Reanimated.SharedValue; pageWidth?: number; /** static page index */ currentPage: Reanimated.SharedValue; /** transition page index (can be a fraction when transitioning between pages) */ targetPage: Reanimated.SharedValue; carouselOffset: Reanimated.SharedValue; } declare const TabBarContext: React.Context; export default TabBarContext;