import { BaseHTMLAttributes } from 'react';
/**
* **JSON-format type: menuPath**
*
* Describes a path through a menu, where each child describes a step in the path. As such, children are typically `text` components with the `display` option, but that's not always the case.
*
* Children: `[any+]`
*
* @param children
* @param className
* @param props
* @constructor
*/
declare function MenuPathText({ children, className, ...props }: BaseHTMLAttributes): import("react/jsx-runtime").JSX.Element;
export { MenuPathText };