import type { IStage, IStageParams, IOption3D } from '@visactor/vrender'; import React from 'react'; export interface StageProps extends Omit, Omit, 'id' | 'title'> { containerId?: string | undefined; containerTitle?: string | undefined; children?: any; stage3dOptions?: IOption3D; } export declare const Stage: React.ForwardRefExoticComponent>;