import * as React from "react"; declare type Props = { id: string; onClick: (id: string) => void; active: boolean; children: React.ReactNode; }; export default class Tab extends React.PureComponent { static defaultProps: { active: boolean; }; handleClick: () => void; render(): JSX.Element; } export {};