import * as THREE from "three";
type Props = {
    color?: THREE.ColorRepresentation;
    opacity?: number;
    wireframe?: boolean;
};
declare const createDebugMaterial: (props?: Props) => THREE.MeshBasicMaterial;
export { createDebugMaterial };
