import { FunctionalComponent } from '../../stencil-public-runtime';
declare type TabbarItemProps = {
  index: number;
  isSelected?: boolean;
  textColor?: string;
  badgeText?: string;
  iconPath: string;
  showRedDot?: boolean;
  text?: string;
  onSelect: (index: number) => void;
};
export declare const TabbarItem: FunctionalComponent<TabbarItemProps>;
export {};
