import { TextAreaProps } from '@patternfly/react-core'; import { ReactNode } from 'react'; declare type AcmTextAreaProps = TextAreaProps & { id: string; label: string; validation?: (value: string) => string | undefined; labelHelp?: ReactNode; labelHelpTitle?: ReactNode; helperText?: string; }; export declare function AcmTextArea(props: AcmTextAreaProps): JSX.Element; export {};