import React from "react"; import type { Intersection } from "three"; declare type Fn = (intersection: Intersection, intersections: Intersection[]) => void; declare type Props = { children: React.ReactNode; onMove?: Fn; onOver?: Fn; onOut?: Fn; onDown?: Fn; onUp?: Fn; enabled?: boolean; }; export default function Interaction({ children, onMove, onOver, onOut, onDown, onUp, enabled, }: Props): JSX.Element; export {};