export default FormControlEditor;
declare function FormControlEditor(props: any): JSX.Element;
declare namespace FormControlEditor {
    namespace propTypes {
        const label: PropTypes.Requireable<string>;
        const helperText: PropTypes.Requireable<string>;
        const MuiFormLabelProps: PropTypes.Requireable<object>;
        const EditorProps: PropTypes.Requireable<object>;
        const MuiFormHelperTextProps: PropTypes.Requireable<object>;
    }
}
import PropTypes from "prop-types";
