import React from 'react';
import { NGL, CameraState } from '../../utils';
export interface StageProps {
    width: string;
    height: string;
    params?: Partial<NGL.StageParameters>;
    cameraState?: Partial<CameraState>;
    onCameraMove?: (cameraState: Partial<CameraState>) => void;
}
export declare const Stage: React.FC<StageProps>;
