import * as React from 'react'; import './index.scss'; export interface TabProps { /** * 选中背景颜色 */ selectedBGColor: string; /** * 选中字体颜色 */ selectedFontColor: string; /** * 尺寸 small | large */ size: string; /** * 点击事件 * @param e */ onClickHandle?: (e: number[]) => void; /** * 未读消息数量 */ unreadCount?: number; } declare const Tab: React.FC; export default Tab;