import type { LiveComponent, PropsWithChildren } from '@use-gpu/live'; import type { VectorLike } from '@use-gpu/core'; export type CubeCameraProps = PropsWithChildren<{ position?: VectorLike; near?: number; far?: number; focus?: number; scale?: number | null; }>; export declare const CubeCamera: LiveComponent;