export default TextSelectWidget; declare class TextSelectWidget extends React.Component { static contextType: React.Context; static propTypes: { schema: PropTypes.Validator; }>>>; value: PropTypes.Requireable; }; constructor(props: any); state: { selectedCheckboxes: Set; enums: any; otherValue: string; freeTextField: any; }; UNSAFE_componentWillReceiveProps(props: any): void; getInitialState(props: any): { selectedCheckboxes: Set; enums: any; otherValue: string; freeTextField: any; }; getStateFromProps(props: any): { otherValue: string; }; render(): JSX.Element; onCheckBoxChange: (label: any) => () => void; onInputChange: (value: any) => void; onChange: (textValue: any) => void; } import * as React from "react"; import * as PropTypes from "prop-types";