import { FunctionComponent, ReactNode } from 'react'; import { BadgeProps } from '../badge/badge.taro'; export interface TabbarItemProps extends BadgeProps { /** * 标签页的标题 * @default - */ title: ReactNode /** * 自定义图标 * @default - */ icon: ReactNode active: boolean; activeColor: string; inactiveColor: string; index: number; handleClick: (idx: number) => void; } export declare const TabbarItem: FunctionComponent>;