import { PlayOptions } from '@gamepark/react-client'; import { HTMLAttributes, ReactNode } from 'react'; export type ItemButtonProps = { move?: any; moves?: any[]; options?: PlayOptions; label?: ReactNode; labelPosition?: 'left' | 'right'; x?: number; y?: number; angle?: number; radius?: number; }; export declare const ItemMenuButton: ({ move, moves, options, label, angle, radius, x, y, labelPosition, children, ...props }: ItemButtonProps & HTMLAttributes) => import("@emotion/react/jsx-runtime").JSX.Element;