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 | bigint | true | (import("react").JSX.Element | undefined)[] | Iterable | Promise | ReactElement> | import("react").ReactPortal | null | undefined> | ReactElement> | undefined;
//# sourceMappingURL=render-menu-action-children.d.ts.map