import * as React from 'react'; import { Size } from '../types'; type TabsProps = { children?: any; size: Size; }; declare const Tabs: React.FunctionComponent; export default Tabs;