import { ReactElement } from 'react'; import { FormContextType, Registry, RJSFSchema, StrictRJSFSchema, UiSchema } from '@rjsf/utils'; export interface RichDescriptionProps { /** The description text for a field, potentially containing markdown */ description: 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 `RichDescriptionProps` for this component */ declare function RichDescription({ description, registry, uiSchema }: RichDescriptionProps): string | import("react/jsx-runtime").JSX.Element; declare namespace RichDescription { var TEST_IDS: import("@rjsf/utils").TestIdShape; } export default RichDescription; //# sourceMappingURL=RichDescription.d.ts.map