import { Box2, Vector2, Vector3 } from 'three'; import { PatchSides, PatchBoundingPoints, CubeSides, PatchId } from './common_types.js'; export declare const getPatchNeighbours: (patchId: PatchId, patchSides?: PatchSides) => Vector2[]; export declare const getPatchBoundingPoints: (bounds: Box2) => PatchBoundingPoints; export declare const getCubeNeighbours: (pos: Vector3, cubeSides?: CubeSides) => Vector3[];