import * as React from 'react'; import { StandardProps } from '..'; import { ButtonBaseProps } from '../ButtonBase'; export interface TabProps extends StandardProps { disabled?: boolean; fullWidth?: boolean; icon?: string | React.ReactElement; value?: any; label?: React.ReactNode; onChange?: (event: React.ChangeEvent<{ checked: boolean }>, value: any) => void; onClick?: React.EventHandler; selected?: boolean; style?: React.CSSProperties; textColor?: string | 'secondary' | 'primary' | 'inherit'; } export type TabClassKey = | 'root' | 'labelIcon' | 'textColorInherit' | 'textColorPrimary' | 'textColorSecondary' | 'selected' | 'disabled' | 'fullWidth' | 'wrapper' | 'labelContainer' | 'label' | 'labelWrapped'; declare const Tab: React.ComponentType; export default Tab;