/** @jsxImportSource @emotion/react */
import { Interpolation, SerializedStyles, Theme } from '@emotion/react';
import { HTMLAttributes } from 'react';
import { CssAnimation } from '../Draggable';
type WithConditionalCSSProp
= 'className' extends keyof P ? string extends P['className' & keyof P] ? {
css?: Interpolation;
} : {} : {};
export type HandItemProps = {
angle: number;
rotationOrigin?: number;
sizeRatio?: number;
projection?: boolean;
animation?: HandItemAnimation;
hoverStyle?: SerializedStyles;
itemSelector?: string;
} & HTMLAttributes & WithConditionalCSSProp;
export type HandItemAnimation = CssAnimation & {
fromNeutralPosition?: boolean;
toNeutralPosition?: boolean;
};
declare const _default: import("react").ForwardRefExoticComponent<{
angle: number;
rotationOrigin?: number;
sizeRatio?: number;
projection?: boolean;
animation?: HandItemAnimation;
hoverStyle?: SerializedStyles;
itemSelector?: string;
} & HTMLAttributes & {
css?: Interpolation;
} & import("react").RefAttributes>;
export default _default;