import React from 'react'; import { BaseProps } from '../_utils/props'; export interface TextareaProps extends BaseProps { rows?: number; limit?: number; counter?: (count?: number) => React.ReactNode; defaultValue?: string; value?: string; onChange?: (value: any, event: React.ChangeEvent) => void; disabled?: boolean; } declare const Textarea: (props: TextareaProps) => JSX.Element; export default Textarea;