import React from 'react';
export type Props = {
    placeholder: string;
    id?: string;
    name?: string;
    height?: string;
    labelText?: string;
    labelColor?: string;
    value?: string;
    className?: string;
    onChange?: (v: string) => void;
    onKeyPress?: (e: KeyboardEvent) => void;
    disabled?: boolean;
};
/**
 * @deprecated Consider to use at '@hhgtech/hhg-components/mantine'
 */
declare const TextArea: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLTextAreaElement>>;
export { TextArea };
