
import * as React from 'react';


interface TabViewProps {
  slot?: string;
  id?: string | number;
  className?: string;
  style?: React.CSSProperties;
  children?: React.ReactNode;
}
declare const TabView: React.FunctionComponent<TabViewProps>;

export default TabView;
  