import { type SceneControl } from '@anov/3d-core'; type BloomPassOptions = { threshold?: number; strength?: number; radius?: number; }; /** * create bloom pass */ declare const addBloomPass: (bloomPass: BloomPassOptions, sceneControl: SceneControl) => () => void; export default addBloomPass;