import React from 'react'; import { NormalTypes } from '../utils/prop-types'; interface Props { value?: string; initialValue?: string; placeholder?: string; status?: NormalTypes; width?: string; minHeight?: string; disabled?: boolean; readOnly?: boolean; onChange?: (e: React.ChangeEvent) => void; onFocus?: (e: React.FocusEvent) => void; onBlur?: (e: React.FocusEvent) => void; className?: string; } declare const defaultProps: { initialValue: string; status: "default" | "secondary" | "success" | "warning" | "error"; width: string; minHeight: string; disabled: boolean; readOnly: boolean; className: string; }; type NativeAttrs = Omit, keyof Props>; export type TextareaProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "width" | "className" | "status" | "disabled" | "readOnly" | "initialValue" | "minHeight">>; export default _default;