import { Canvas } from '@react-three/fiber'; import React from 'react'; export type ThreeCanvasProps = React.ComponentProps & { readonly width: number; readonly height: number; readonly children: React.ReactNode; }; export declare const ThreeCanvas: (props: ThreeCanvasProps) => import("react/jsx-runtime").JSX.Element;