import * as React from 'react'; declare type Props = { handleTabClose: (event: any) => void; }; export default class CloseButton extends React.PureComponent { render(): JSX.Element; } export {};