import React from 'react'; export interface SceneProps { id?: string; commentId?: string; style?: React.CSSProperties; 'data-label'?: string; 'data-uid'?: string; } export declare const Scene: React.MemoExoticComponent<(props: React.PropsWithChildren) => JSX.Element>;