export interface MenuItemProps { key: string; icon: React.ReactNode; text: string; } interface MenuActionProps { ariaHidden?: boolean; ariaLabel: string; menuItems: MenuItemProps[]; onItemClick: (index: number, key: string) => void; onOpen: () => void; tabIndex?: number; } export declare const MenuAction: ({ ariaHidden, ariaLabel, menuItems, onItemClick, onOpen, tabIndex, ...restProps }: MenuActionProps) => import("react/jsx-runtime").JSX.Element; export {};