import { Scene } from "@babylonjs/core/scene"; import { Camera } from "@babylonjs/core/Cameras/camera"; import { MotionBlurPostProcess } from "@babylonjs/core/PostProcesses/motionBlurPostProcess"; /** * Defines the configuration of the motion blur post-process per camera. */ export declare const motionBlurPostProcessCameraConfigurations: Map; export declare function getMotionBlurPostProcess(): MotionBlurPostProcess | null; /** * Sets the reference to the motion blur post-process. * @access editor only. */ export declare function setMotionBlurPostProcessRef(postProcess: MotionBlurPostProcess | null): void; export declare function disposeMotionBlurPostProcess(): void; export declare function createMotionBlurPostProcess(scene: Scene, camera: Camera): MotionBlurPostProcess; export declare function serializeMotionBlurPostProcess(): any; export declare function parseMotionBlurPostProcess(scene: Scene, camera: Camera, data: any): MotionBlurPostProcess;