import { Scene } from '@babylonjs/core'; import { PostProcessingConfig } from "../interfaces/level.d.ts"; /** * Apply post-processing effects to a scene based on a declarative config. * Creates BabylonJS rendering pipelines and configures them according to the provided settings. * * This is a level-config handler, not a node property handler. */ export declare function applyPipelinePostProcessing(scene: Scene, config: PostProcessingConfig): void;