import * as React from 'react'; import { Mesh } from 'three'; import { ReactThreeFiber, Overwrite } from 'react-three-fiber'; import { Reflector as ReflectorImpl, ReflectorOptions } from 'three/examples/jsm/objects/Reflector'; export declare type Reflector = Overwrite, { children: React.ReactElement>; }>; declare global { namespace JSX { interface IntrinsicElements { reflectorImpl: Reflector; } } } declare type Props = ReflectorOptions & Omit & { children: React.ReactElement; }; export declare const Reflector: React.ForwardRefExoticComponent & React.RefAttributes>; export {};