import React from 'react';
import { ITextArea } from './types/textArea';
declare const TextareaBoundary: <V extends string | unknown>(props: ITextArea<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
declare const TextArea: <V extends string | unknown>(props: React.PropsWithChildren<ITextArea<V>> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof TextareaBoundary>;
export { TextArea };
