
import * as React from 'react';


interface TabbarProps {
  slot?: string;
  id?: string | number;
  className?: string;
  style?: React.CSSProperties;
  labels ?: boolean;
  scrollable ?: boolean;
  hidden ?: boolean;
  noShadow ?: boolean;
  noHairline ?: boolean;
  position ?: string;
  top ?: boolean;
  bottom ?: boolean;
  fill?: boolean;
  color?: string;
  colorTheme?: string;
  textColor?: string;
  bgColor?: string;
  borderColor?: string;
  rippleColor?: string;
  themeDark?: boolean;
  onTabbarHide ?: (...args: any[]) => void;
  onTabbarShow ?: (...args: any[]) => void;
  ref?: React.MutableRefObject<{el: HTMLElement | null; hide: () => void; show: () => void;}>;
  children?: React.ReactNode;
}
declare const Tabbar: React.FunctionComponent<TabbarProps>;

export default Tabbar;
  