Repository URL to install this package:
|
Version:
3.1.2 ▾
|
import * as React from 'react';
import { Value } from '../typings';
import { InputProps } from '../inputs/typings';
declare class TextBoxPlugin extends React.Component<InputProps> {
static isSatisfiedByProps(props: {
type: string;
}): boolean;
static defaultState: {
validator: (value: Value) => boolean;
};
render(): JSX.Element;
}
export { TextBoxPlugin, TextBoxPlugin as TextPlugin };
export default TextBoxPlugin;