UNPKG

593 BTypeScriptView Raw
1import { StyleProp, ViewStyle } from 'react-native';
2import type { NavigationState, Route, SceneRendererProps } from './types';
3export type GetTabWidth = (index: number) => number;
4export type Props<T extends Route> = SceneRendererProps & {
5 navigationState: NavigationState<T>;
6 width: string | number;
7 style?: StyleProp<ViewStyle>;
8 getTabWidth: GetTabWidth;
9 gap?: number;
10};
11export declare function TabBarIndicator<T extends Route>({ getTabWidth, layout, navigationState, position, width, gap, style, }: Props<T>): JSX.Element;
12//# sourceMappingURL=TabBarIndicator.d.ts.map
\No newline at end of file