import { OutlineEffect } from 'postprocessing'; import React, { MutableRefObject } from 'react'; import { Object3D } from 'three'; declare type ObjectRef = MutableRefObject; export declare type OutlineProps = ConstructorParameters[2] & Partial<{ selection: ObjectRef | ObjectRef[]; selectionLayer: number; }>; export declare const Outline: React.ForwardRefExoticComponent & Partial<{ selection: ObjectRef | ObjectRef[]; selectionLayer: number; }> & React.RefAttributes>; export {};