import { AnchorHTMLAttributes } from 'react';
/**
* **JSON-format type: url**
*
* Attributes:
* * `href` The link target. Should not be rendered visually - instead, render the children.
*
* Children: `[any+]`
*
* **JSON-format type: xref**
*
* A link to another article.
*
* Attributes:
* * `articleId` The ID of the article being linked to. May be the same ID as the current article, for internal links.
* * `targetId` (optional) The `id` of the element being linked to.
* * `documentType` The document type of the article being linked to.
*
* Children: `[any+]`
*
* @param href
* @param children
* @param className
* @param props
* @constructor
*/
declare function UrlText({ href, children, className, ...props }: AnchorHTMLAttributes): import("react/jsx-runtime").JSX.Element;
export { UrlText };