import { PlaneBufferGeometry } from 'three'; interface PlaneJson { type: 'Plane'; width: number; height: number; } declare const getPlaneJson: () => PlaneJson; declare const createPlane: (json: PlaneJson) => PlaneBufferGeometry; export { PlaneJson, getPlaneJson, createPlane };