import React from 'react'; import * as THREE from 'three'; import { ReactThreeFiber } from '@react-three/fiber'; import { R3FlexProps } from './props'; export declare type BoxProps = { centerAnchor?: boolean; children: React.ReactNode | ((width: number, height: number, centerAnchor?: boolean) => React.ReactNode); } & R3FlexProps & Omit, 'children'>; /** * Box container for 3D Objects. * For containing Boxes use ``. */ export declare const Box: React.ForwardRefExoticComponent & React.RefAttributes>;