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