import { Vector3 } from 'three';
import { PointOfViewDto } from '../dto/point-of-view.dto';
import { CameraConstraints } from './camera-constraints.object';
export declare class PointOfView {
    description: string;
    cameraPosition: Vector3;
    lookAtPosition?: Vector3;
    isFixedPointOfView?: boolean;
    cameraConstraints?: CameraConstraints;
    constructor(pointOfViewDto: PointOfViewDto);
}
