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