import * as React from 'react'; interface Props { id: string; tab: string; currentTab: string; style?: React.CSSProperties; children: React.ReactNode; } declare const TabItem: (props: Props) => JSX.Element; export default TabItem;