import * as React from 'react'; import { Animated, ViewStyle } from 'react-native'; export interface IMDTabItem { name?: number; label?: string; icon?: string; disabled?: boolean; } export interface IMDTabsProps { styles?: IMDTabsStyle; currentIndex?: number; hasInk?: boolean; } export interface IMDTabsStyle { wrapper?: ViewStyle; content?: ViewStyle; } interface IMDTabBarState { currentIndex?: number; inkPos: Animated.Value; } export declare const MDTabsStyles: IMDTabsStyle; export default class MDTabs extends React.Component { static defaultProps: { styles: IMDTabsStyle; }; constructor(props: IMDTabsProps); private items; componentWillReceiveProps(props: IMDTabsProps): void; render(): JSX.Element; private childItem; private onPress; } export {};