import CompCommon from '../../common/type'; export interface TabList { title: string; } export interface TabProps extends CompCommon { tabList: TabList[]; current: number; height?: string; onClick?: Function; customStyle: string; tabDirection: 'horizontal' | 'vertical'; scroll: boolean; swipeable: boolean; animated: boolean; activeColor?: string; color?: string; }