import React, { JSX } from 'react'; import './Tab.scss'; export type Tab = { name: string; title: string; panel: JSX.Element; }; export type TabProps = { tab: Tab; activeTab: string; onTabChosen(tabName: string): void; }; export declare const Tab: React.FC;