import type { LiveComponent, LiveElement } from '@use-gpu/live'; import type { VectorLike } from '@use-gpu/core'; import { OrbitCameraProps } from './orbit-camera.d.cts'; export type LookAtProps = { position?: VectorLike; target?: VectorLike; render?: (orbit: OrbitCameraProps) => LiveElement; children?: (orbit: OrbitCameraProps) => LiveElement; }; export declare const LookAt: LiveComponent;