import * as React from 'react'; interface Tab { id: string; content: React.ReactNode; } interface Props { style?: React.CSSProperties; tabs: Tab[]; currentTab: string; children: React.ReactNode; onChange: (id: string) => void; } declare const TabContainer: (props: Props) => JSX.Element; export default TabContainer;