import * as react from 'react'; import * as _emotion_react from '@emotion/react'; import { LabelProps } from '../Label/Label.types.js'; import { TextareaCoreProps } from './Textarea.types.js'; export { TextareaProps } from './Textarea.types.js'; import '../types.js'; /** @jsxImportSource @emotion/react */ declare const Textarea: react.ForwardRefExoticComponent<{ as?: "textarea" | undefined; native?: ({ [x: `data-${string}`]: string | boolean | undefined; } & Omit, HTMLTextAreaElement>, "ref">) | undefined; } & { className?: string | undefined; sx?: _emotion_react.CSSObject | undefined; } & Omit & { label?: string | undefined; labelProps?: Omit, "text"> | undefined; characterCount?: boolean | undefined; height?: "max" | "min" | "default" | undefined; isError?: boolean | undefined; isFocus?: boolean | undefined; helperText?: string | undefined; errorText?: string | undefined; } & react.RefAttributes>; export { Textarea };