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