
import * as React from 'react';

import { SwiperOptions } from 'swiper';


interface TabsProps {
  slot?: string;
  id?: string | number;
  className?: string;
  style?: React.CSSProperties;
  animated ?: boolean;
  swipeable ?: boolean;
  routable ?: boolean;
  swiperParams ?: SwiperOptions;
  ref?: React.MutableRefObject<{el: HTMLElement | null;}>;
  color?: string;
  colorTheme?: string;
  textColor?: string;
  bgColor?: string;
  borderColor?: string;
  rippleColor?: string;
  themeDark?: boolean;
  children?: React.ReactNode;
}
declare const Tabs: React.FunctionComponent<TabsProps>;

export default Tabs;
  