import { Component } from 'react'; import PropTypes from 'prop-types'; export declare class ValidatableControl extends Component<{ isInvalid?: boolean; children: any; }> { static propTypes: { children: PropTypes.Requireable; isInvalid: PropTypes.Requireable; }; private control; updateValidity(): void; componentDidMount(): void; componentDidUpdate(): void; setRef: (node: any) => void; render(): any; }