import { ReactNode } from "react"; import { Intersection, Raycaster } from "three"; export type InteractableProps = { onClick?: (e: Intersection) => void; onHover?: () => void; onUnHover?: () => void; raycaster?: Raycaster; children: ReactNode | ReactNode[]; }; export declare function Interactable(props: InteractableProps): import("react").JSX.Element;