import { type ReactNode } from 'react'; /** * Wraps the passed child element in the corresponding Menu component * or calls the function recursively if the child is a Group * * @param children - element to render */ export declare function renderMenuActionChildren(children: ReactNode): (import("react/jsx-runtime.js").JSX.Element | undefined)[] | undefined;