import type React from 'react'; import type { BaseProps } from '../../types/component'; export interface RtcRoomProps extends BaseProps { userId: string; mode?: 'camera' | 'video' | 'screen'; onError?: (event: any) => void; onTap?: (event: any) => void; onClick?: (event: any) => void; } export declare const RtcRoom: React.ComponentType;