Repository URL to install this package:
|
Version:
4.0.23 ▾
|
import { InputChain } from 'src/forms/input/InputChain';
declare class TextBoxInput extends InputChain {
/**
* this handles all text inputs, and is the default
* @note !!!! added || true so it is always the fallback
*/
static isSatisfiedByProps(props: any): boolean;
validate: () => void;
render(): JSX.Element;
}
export { TextBoxInput };
export default TextBoxInput;