import { FC, RefObject } from 'react'; export interface TextareaProps { inputRef?: RefObject; label?: string; value?: string; required?: boolean; placeholder?: string; name?: string; onChange?: (e: any) => void; initialRows?: number; style?: 'normal' | 'booking'; optional: boolean; isKeyBoardOpen?: (e: any) => void; } declare const Textarea: FC; export default Textarea;