import * as THREE from 'three'; declare type FBOSettings = { multisample?: boolean; samples?: number; } & THREE.WebGLRenderTargetOptions; export declare function useFBO(width?: number | FBOSettings, height?: number, settings?: FBOSettings): any; export {};