export default Textarea;
declare class Textarea extends React.Component<any, any, any> {
    static propTypes: {
        /** @ignore */
        className: PropTypes.Requireable<string>;
        /** 是否使用带阴影的输入框 */
        isShadowInput: PropTypes.Requireable<boolean>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    render(): React.JSX.Element;
}
import React from "react";
import PropTypes from "prop-types";
