export default function cannonBall(flyingId: string, targetId: string, options?: {
    moveX?: boolean;
    moveY?: boolean;
    duration?: number;
    acceleration?: number;
    scale?: number;
    fly3D?: boolean;
    onTransitionEnd?: () => void;
    removeOriginal?: boolean;
    resetTransformation?: boolean;
}): void;
