import { DraggableProps } from '../Draggable/Draggable'; import { HandItemProps } from './HandItem'; export type HandProps = { maxAngle?: number; gapMaxAngle?: number; clockwise?: boolean; getItemProps?: (index: number) => ItemProps; } & ItemProps; export type ItemProps = { ignore?: boolean; drag?: DraggableProps; } & Omit; export default function Hand({ children, maxAngle, gapMaxAngle, clockwise, getItemProps, ...props }: HandProps): JSX.Element;