import React from 'react'; import { Tab } from './Tab'; import './TabPanels.scss'; export type TabPanelsProps = { panels: Tab[]; activePanel: string; }; export declare const TabPanels: React.FC;