import { StyleProp, ViewStyle } from 'react-native'; import type { NavigationState, Route, SceneRendererProps } from './types'; export type GetTabWidth = (index: number) => number; export type Props = SceneRendererProps & { navigationState: NavigationState; width: string | number; style?: StyleProp; getTabWidth: GetTabWidth; gap?: number; }; export declare function TabBarIndicator({ getTabWidth, layout, navigationState, position, width, gap, style, }: Props): JSX.Element; //# sourceMappingURL=TabBarIndicator.d.ts.map