import type { FC, ReactNode } from "react"; type Props = { errorText?: ReactNode; /** * Any additional information to show underneath the field. * * When given as a string, it is rendered as sanitized HTML (DOMPurify), * so translated copy can contain markup such as links. */ helperText?: ReactNode; /** * The ID of the element that the helper/error text describes. This is * required for accessibility, as it allows screen readers to associate * the helper and error text with the input field. */ describingId: string; }; export declare const HelperAndErrorText: FC; export {};