import { ReactElement } from 'react'; import { FormContextType, Registry, RJSFSchema, StrictRJSFSchema, UiSchema } from '@rjsf/utils'; export interface RichHelpProps { /** The description text for a field, potentially containing markdown */ help: string | ReactElement; /** The uiSchema object for this base component */ uiSchema?: UiSchema; /** The `registry` object */ registry: Registry; } /** Renders the given `description` in the props as * * @param props - The `RichHelpProps` for this component */ declare function RichHelp({ help, registry, uiSchema, }: RichHelpProps): string | import("react/jsx-runtime").JSX.Element; declare namespace RichHelp { var TEST_IDS: import("@rjsf/utils").TestIdShape; } export default RichHelp; //# sourceMappingURL=RichHelp.d.ts.map