/** @jsx jsx */ /** @jsxFrag React.Fragment */ import * as React from "react"; interface Props { children: React.ReactNode; className?: string; } /** * Component to render a form's error message * * 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 FormErrorMessage: React.FC; export {};