import React from "react"; import { MetaProps } from "src/types"; type TextareaPropTypes = { readonly autoFocus?: boolean; readonly disabled?: boolean; readonly input: any; readonly inputClass?: string; readonly label: string; readonly meta: MetaProps; readonly placeholder: string; readonly rows?: string; readonly tabIndex?: string; readonly onRegisterRef?: (callback: (node: any) => void) => void; }; export declare const OldSimpleTextarea: (props: TextareaPropTypes) => React.JSX.Element; export {};