/// import { useGLTF } from '@react-three/drei'; import { GroupProps } from '@react-three/fiber'; import { Group, Mesh, MeshStandardMaterial } from 'three'; export type UseGLTF = ReturnType & { nodes: Record; materials: Record; }; export interface MacintoshProps extends GroupProps { } export type RefType = Group; declare const Macintosh: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export { Macintosh };