import { Texture } from 'three'; interface CameraPreviewPlaneProps { /** Width of the preview plane */ width?: number; /** Height of the preview plane */ height?: number; /** Position of the preview plane relative to the camera */ position?: [number, number, number]; /** Texture to display on the preview plane */ texture: Texture; /** Background color for the preview */ backgroundColor?: string; /** Background opacity (0-1) */ backgroundOpacity?: number; } /** * Preview plane that displays camera render output in the 3D scene. * Set to CAMERA_HELPERS layer so it's only visible to SceneCamera, * not to other virtual cameras. */ export declare function CameraPreviewPlane({ width, height, position, texture, backgroundColor, backgroundOpacity, }: CameraPreviewPlaneProps): import("react/jsx-runtime").JSX.Element; export {};