import React from 'react'; import { TextProps } from '../Text'; export interface FormHelperTextProps extends TextProps { id: string; } /** * Extends `Text` * * A utility component that quickly allows you to add helpful messages to form fields * */ declare const FormHelperText: React.FC; export default FormHelperText;