import { Component, ComponentType, ReactNode } from 'react'; export interface TabPaneProps { className?: string; /** * Text shown on tab. */ label: string; /** * Unique identifier for the pane */ id: string; children?: ReactNode; component?: ComponentType; } export interface ITabPane extends Component { }