import { FunctionComponent } from 'react'; import { BasicComponent } from '../../utils/typings'; import { default as TabbarItem } from '../tabbaritem'; export interface TabbarProps extends BasicComponent { defaultValue: number; value?: number; fixed: boolean; inactiveColor: string; activeColor: string; safeArea: boolean; onSwitch: (value: number) => void; } export declare const Tabbar: FunctionComponent> & { Item: typeof TabbarItem; };