You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
478 B

import { StyleProp, ViewStyle, ViewProps } from 'react-native';
import { ParentProps } from './Tab.Item';
import { RneFunctionComponent } from '../helpers';
export interface TabProps extends ViewProps, ParentProps {
value?: number;
scrollable?: boolean;
onChange?: (value: number) => void;
disableIndicator?: boolean;
indicatorStyle?: StyleProp<ViewStyle>;
variant?: 'primary' | 'default';
}
export declare const TabBase: RneFunctionComponent<TabProps>;