import * as React from 'react'; import TagProps from './TagPropsType'; export default class Modal extends React.Component { static defaultProps: { disabled: boolean; selected: boolean; onChange(): void; }; constructor(props: any); componentWillReceiveProps(nextProps: any): void; onClick: () => void; render(): JSX.Element; }