import { AnimatedStyle } from "react-native-reanimated"; import { ViewStyle } from "react-native"; export interface TopTabIndicatorProps { /** * Width of the indicator in pixels * @default 50 */ indicatorWidth?: number; /** * Height of the indicator in pixels * @default 4 */ indicatorHeight?: number; /** * Background color of the indicator * @default "white" */ indicatorColor?: string; /** * Additional custom styles for the indicator */ indicatorStyle?: AnimatedStyle; } declare const TopTabIndicator: ({ indicatorWidth: customIndicatorWidth, indicatorHeight: customIndicatorHeight, indicatorColor: customIndicatorColor, indicatorStyle: customIndicatorStyle, }: TopTabIndicatorProps) => import("react/jsx-runtime").JSX.Element; export default TopTabIndicator; //# sourceMappingURL=TopTabIndicator.d.ts.map