import { type ReactNode } from 'react'; import type { HeaderAction } from './headerActionTypes'; /** * Renders grouped field actions as PopoverMenu items, with a divider between * groups. Shared by HeaderActionsPopover (table header) and FieldActionsPopover * (side panels) so the menu body is identical across surfaces; only the trigger * differs. Returns an empty array when there are no actions. */ export declare function actionMenuItems(actions: HeaderAction[][]): ReactNode[]; //# sourceMappingURL=actionMenuItems.d.ts.map