import React from 'react'; import type { ActionsItemProps, ItemType } from './interface'; /** Tool function: Find data item by path */ export declare const findItem: (keyPath: string[], items: ItemType[]) => ItemType | null; declare const ActionsMenu: React.FC; export default ActionsMenu;