import React from 'react';
import { TextareaProps as MantineTextareaProps } from '@mantine/core';
export type TextAreaProps = MantineTextareaProps;
declare const TextArea: (props: TextAreaProps) => React.JSX.Element;
export { TextArea };
