import { StandardProps } from '@tarojs/components'; import React, { FC } from 'react'; import { CustomObj } from '../../common/type-utils'; interface BaseTabsProps extends StandardProps { tabKeyName?: string; currentIndex?: number; activeColor?: string; scroll?: boolean; isSticky?: boolean; tabList: (CustomObj | string)[]; childSlot?: (val: CustomObj | string, idx: number | string) => React.ReactNode; onSingleTap?: (selectedIndex: number) => void; } declare const YgTabs: FC; export default YgTabs;