import React from 'react'; import { TextareaProps as TaTextareaProps } from '@tarojs/components/types/Textarea'; import './index.less'; export interface TextareaProps extends TaTextareaProps { value?: string | number | any; onChange?: (value: string, fieldId?: string) => void; vlidate?(value: string): boolean; fieldId?: string; line?: number; disabled?: boolean; placeholderClass?: string; style?: React.CSSProperties; className?: string; } export declare const Textarea: React.NamedExoticComponent; export default Textarea;