import { FormRowProps } from '../../FormRow/FormRow'; import { FormRowHelperTextOwnProps } from '../../FormRow/FormRowHelperText'; import { TextareaProps } from '../../Inputs/Textarea/Textarea'; import { LabelAfterProps } from '../../LabelAfter/LabelAfter'; import * as React from 'react'; /** @inheritdoc */ export interface TextareaFieldProps extends Omit, Partial, Omit { /** * Addon to the right of the input. * * **INTERNAL USE ONLY:** It is unsafe to rely on this prop, as it may change or be removed in the future. * @internal */ UNSAFE_addon?: React.ReactNode; /** * Label displayed after the input element. */ labelAfter?: LabelAfterProps['label']; } export declare const TextareaField: React.ForwardRefExoticComponent & React.RefAttributes>;