import { MmUIComponent } from './component' /** Textarea component */ export declare class MmTextarea extends MmUIComponent { /** Input box contents */ value: string /** Input field type */ type: string /** Sensory input method or not */ composition: boolean /** Automatic resizing */ autosize: boolean | { minRows: number maxRows: number } /** When focus, select content */ selectOnFocus: boolean /** Can it be stretched */ resize: boolean }