import React from 'react'; import { Tabs as AntTabs } from 'antd'; import { TabsProps as AntTabsProps } from 'antd/lib/tabs'; import './styles.scss'; export declare type TabsProps = { variant?: 'button' | 'basic'; fullWidth?: boolean; } & AntTabsProps; declare const Tabs: React.FC; declare const ExportSelect: { TabPane?: typeof AntTabs.TabPane; } & typeof Tabs; export default ExportSelect;