import * as THREE from 'three'; import * as React from 'react'; type Props = Omit & { /** Registers the camera as the system default, fiber will start rendering with it */ makeDefault?: boolean; /** Making it manual will stop responsiveness and you have to calculate aspect ratio yourself. */ manual?: boolean; /** The contents will either follow the camera, or be hidden when filming if you pass a function */ children?: React.ReactNode | ((texture: THREE.Texture) => React.ReactNode); /** Number of frames to render, Infinity */ frames?: number; /** Resolution of the FBO, 256 */ resolution?: number; /** Optional environment map for functional use */ envMap?: THREE.Texture; }; export declare const OrthographicCamera: React.ForwardRefExoticComponent & React.RefAttributes>; export {}; //# sourceMappingURL=OrthographicCamera.d.ts.map