import React, { CSSProperties } from 'react'; import './Tab.css'; export interface TabLabelProps { children: JSX.Element | string; active: boolean; disabled?: boolean; action: () => void; styles?: CSSProperties; } declare const TabLabel: React.FC; export default TabLabel;