Repository URL to install this package:
|
Version:
2.7.6 ▾
|
import React from 'react';
import { TextAreaProps } from './typings';
declare class TextArea extends React.PureComponent<TextAreaProps> {
static defaultProps: {
maxLength: number;
className: string;
placeholder: string;
nowrap: boolean;
};
render(): JSX.Element;
}
export default TextArea;
export { TextArea };