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