import { FC } from 'react'; interface ITransparentTextArea { value: string; onValueChange: (value: string) => void; label?: string; multiline?: boolean; error?: string; placeholder?: string; countDown?: number; readOnly?: boolean; } export declare const TransparentTextArea: FC; export {};