import React from 'react'; import Panel from './PanelList/Panel'; interface Props { onChange?: (activeKey: React.Key | null) => void; activeKey?: React.Key; } interface SideTabComponent extends React.FC { Panel: typeof Panel; } declare const SideTab: SideTabComponent; export default SideTab;