import { FC } from 'react';
import { TextStyle, ViewStyle } from 'react-native';
declare type Props = {
    tabs: string[];
    onChange: (index: number) => void;
    currentIndex: number;
    activeSegmentBackgroundColor?: string;
    containerStyle?: ViewStyle;
    textStyle?: TextStyle;
    activeTextColor?: string;
    activeContainerStyles?: ViewStyle;
};
declare const SegmentedControl: FC<Props>;
export default SegmentedControl;
