import React from 'react';
import { ActionsProps } from '.';
import { ActionItem, ItemType } from './interface';
export declare const findItem: (keyPath: string[], items: ActionItem[]) => ActionItem | null;
declare const ActionMenu: (props: {
    item: ItemType;
} & Pick<ActionsProps, 'prefixCls' | 'onClick'>) => React.JSX.Element;
export default ActionMenu;
