UNPKG

spacesvr-websessions

Version:

A standardized reality for future of the 3D Web

10 lines (9 loc) 278 B
import { GroupProps } from "@react-three/fiber"; import { ReactNode } from "react"; declare type PaneProps = { width: number; height: number; children?: ReactNode | ReactNode[]; } & GroupProps; export default function Pane(props: PaneProps): JSX.Element; export {};