import { FunctionComponent, ReactNode } from 'react';
import { BasicComponent } from '../../utils/typings';
export interface TabbarItemProps extends BasicComponent {
    title: ReactNode;
    icon: ReactNode;
    value: ReactNode;
    dot: boolean;
    max: number;
    top: string;
    right: string;
}
export declare const TabbarItem: FunctionComponent<Partial<TabbarItemProps>>;
