import { CSSProperties, SyntheticEvent } from 'react'; type TabBaseProps = { size?: 'small' | 'large'; onChange?: (a: SyntheticEvent) => unknown; currentTab?: string; tabs?: TabContentProps[]; style?: CSSProperties; itemStyle?: CSSProperties; width?: string; }; export type TabContentProps = TabBaseProps & { value?: string; disabled?: boolean; label?: string; }; export default TabBaseProps; //# sourceMappingURL=type.d.ts.map