declare module '@react-three/fiber' { interface ThreeElements { lumaSplats: any; } } export type SplatsProps = { src: string; semantics: string; [key: string]: unknown; }; export default function Splats({ src, semantics, ...props }: SplatsProps): import("react/jsx-runtime").JSX.Element;