export default class ControlSelect extends React.Component { static propTypes: { size: PropTypes.Requireable; label: PropTypes.Validator; value: PropTypes.Validator; handler: PropTypes.Validator<(...args: any[]) => any>; options: PropTypes.Validator<(PropTypes.InferProps<{ value: PropTypes.Requireable; text: PropTypes.Requireable; }> | null | undefined)[]>; extendClassNames: PropTypes.Requireable>; extendPopupClassNames: PropTypes.Requireable>; qa: PropTypes.Requireable; }; constructor(props: any); constructor(props: any, context: any); _onUpdate: (values: any) => void; render(): import("react/jsx-runtime").JSX.Element; } import React from 'react'; import PropTypes from 'prop-types';