import { FC } from 'react'; type FormFieldHintProps = { /** If `true`, the hint text should be displayed in an error state.. */ error?: boolean; }; export declare const FormFieldHint: FC; export {};