import * as THREE from 'three'; type FBOSettings = { depth?: boolean; } & THREE.RenderTargetOptions; declare function useFBO(width?: number, height?: number, settings?: FBOSettings): THREE.WebGLRenderTarget; export { useFBO };