import * as React from 'react'; import * as THREE from 'three'; import { MaterialNode } from '@react-three/fiber'; import { WireframeMaterialProps } from '../materials/WireframeMaterial'; declare global { namespace JSX { interface IntrinsicElements { meshWireframeMaterial: MaterialNode; } } } interface WireframeProps { geometry?: THREE.BufferGeometry | React.RefObject; simplify?: boolean; } export declare function Wireframe({ geometry: customGeometry, ...props }: WireframeProps & WireframeMaterialProps): React.JSX.Element; export {};