@payfit/unity-components
Version:
10 lines (9 loc) • 497 B
TypeScript
/**
* FormHelperText is a component that displays helper text for a form field.
* @deprecated React Hook Form components are deprecated. Use the TanStack Form version instead.
* @see Storybook docs: https://unity-components.payfit.io/?path=/docs/forms-introduction-to-unity-forms--docs
*/
declare const FormHelperText: import('react').ForwardRefExoticComponent<{
children?: import('react').ReactNode | undefined;
} & import('react').RefAttributes<HTMLElement>>;
export { FormHelperText };