/// <reference types="react" />
import type { HandLength, HandWidth, OppositeHandLength } from './shared/types.js';
type HandProps = {
    angle?: number;
    length?: HandLength;
    name: string;
    oppositeLength?: OppositeHandLength;
    width?: HandWidth;
};
export default function Hand({ angle, name, length, oppositeLength, width, }: HandProps): JSX.Element;
export {};
