import { PureComponent } from 'react'; interface Props { data: any; type?: string; title?: string; defaultValue?: string | number; value?: number | string; onChange?: Function; itemStyle?: Object; } declare class SingleSelection extends PureComponent { constructor(props: Props); get: () => any; render(): JSX.Element; } export default SingleSelection;