import React from 'react'; /** * `TabComponent` and `componentProps` are ONE unit: the panel's props type is * inferred from the bag the caller passes, so the two can no longer drift. */ interface TabContentProps

> { activeTab: string; TabComponent: React.ComponentType

| null; componentProps?: P; className?: string; emptyStateTitle?: string; emptyStateDescription?: string; minHeight?: string; } export declare function TabContent

>({ activeTab, TabComponent, componentProps, className, emptyStateTitle, emptyStateDescription, minHeight, }: TabContentProps

): React.JSX.Element; export {}; //# sourceMappingURL=tab-content.d.ts.map