import React, { Dispatch, ReactNode, SetStateAction } from 'react'; import { SharedValue } from 'react-native-reanimated'; import { StyleProp, TextStyle } from 'react-native'; import { default as PagerViewComponent, PagerViewProps as PWProps } from 'react-native-pager-view'; import type { PagerViewProps } from '../../types'; import type Icon from '../Icons/Icon'; export type TabItemProps = { item: ReactNode; index: number; theme: { [index: string]: string; } | undefined; refPager: React.RefObject; setSize: Dispatch>; slideValue: SharedValue; headerTextColor: { select: string | undefined; default: string | undefined; }; headerTextStyle?: StyleProp; icons?: React.ReactElement[]; selectPage: number; }; declare const _default: React.ForwardRefExoticComponent>; export default _default;