import { FC } from 'react'; export declare type TabPanelData = { caption: string; tooltip?: string; component: FC; testId: string; props?: Record; }; export declare type TabsData = TabPanelData[];