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