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