import React from 'react'; import type { InputContainerProps } from '../input-container/InputContainer'; export type TextareaProps = Omit, 'value' | 'onChange' | 'disabled'> & Omit & { value: string; inputChanged: (event: React.ChangeEvent) => void; disabled?: boolean; loading?: React.ReactNode; rows?: number; showCount?: boolean; tooltip?: React.ReactNode; tooltipPlacement?: 'top' | 'right' | 'bottom' | 'left'; showTooltip?: boolean; adjustHeight?: boolean; placeholder?: string; id?: string; }; export declare const Textarea: React.FC;