import { CameraConstraintsDto } from '../dto/camera-constraints.dto';
export declare class CameraConstraints {
    minDistance: number;
    maxDistance: number;
    maxAzimuthAngle: number;
    minAzimuthAngle: number;
    maxPolarAngle: number;
    minPolarAngle: number;
    constructor(cameraConstraintsDto?: CameraConstraintsDto);
}
