import React from 'react' export interface FormHelperTextProps extends React.HTMLAttributes { testId?: string children?: React.ReactNode error?: boolean } export const FormHelperText: React.FC = ({ children, error, testId, className = '', ...props }) => ( {children} )