import { TabsColors } from '../Tabs'; interface TabPanelProps { children?: React.ReactNode; color?: TabsColors; isFirst?: boolean; style?: React.CSSProperties; /** Ref passed to the component */ ref?: React.Ref; } declare const TabPanel: React.FC; export default TabPanel;