/** @jsx jsx */ /** @jsxFrag React.Fragment */ import * as React from "react"; interface Props { children: React.ReactNode; className?: string; /** * Indicates to show the blue (i) icon */ showIcon?: boolean; } /** * Component to render a helper text * * This is intended to be rendered below ``. If this is rendered on * it's own; it will render `children` without any modification. */ export declare const FormHelperText: React.FC; export {};