import { type ReactElement, type ReactNode } from 'react'; /** * Splits Intents and the rest of the menu items and adds a divider between them. * * Note: If some of the menu items are not of type ChartSeriesAction.*, it could mean that actions * are rendered via intermediate components. To avoid an expensive recursive loop for type checks, * we skip checking the component type entirely. In this case, the consumer needs to be in charge of * rendering a between actions and intents. * * @param children - element to render */ export declare function renderMenuActionChildren(children: ReactNode, options?: { divideActionsAndIntents?: boolean; }): string | number | true | ReactElement> | Iterable | (import("react/jsx-runtime").JSX.Element | undefined)[] | undefined;