///
import { theme } from '@jrolfs/core';
import { MeshProps } from '@react-three/fiber';
import { Object3D } from 'three';
export interface BoxProps extends MeshProps {
color?: theme.Color;
hover?: theme.Color;
spin?: boolean;
}
declare const Box: import("react").ForwardRefExoticComponent & import("react").RefAttributes>>;
export { Box };