import { FC } from 'react'; import { ChildrenOf } from '../../util/types'; import { TabsPanel } from './tabs-panel.component'; import './tabs-panel-container.component.scss'; declare type TabsPanelContainerPropsType = { children: ChildrenOf | ChildrenOf[]; activeTabId: string; }; /** * Internal component for render needed tab by index & advancing tabs to animated tabs * */ export declare const TabsPanelContainer: FC; export {};