import React from 'react'; import { SelectionPropsType } from './PropsType'; import './style.less'; declare class Selection extends React.Component { static defaultProps: SelectionPropsType; static getDerivedStateFromProps(nextProps: any, prevState: any): { value: any; }; state: any; onChange: (e: any) => void; onClick: (e: any) => void; render(): JSX.Element; } export default Selection; export { SelectionPropsType } from './PropsType';