import { MaterialItem } from '@gamepark/rules-api'; import { HTMLAttributes } from 'react'; import { ItemContext } from '../../locators'; import { MaterialDescription } from './MaterialDescription'; type ItemMenuWrapperProps = { item: MaterialItem; itemContext: ItemContext; description: MaterialDescription; } & HTMLAttributes; export declare const ItemMenuWrapper: ({ item, itemContext, description, ...props }: ItemMenuWrapperProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};