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 {};
