import { VuerProps } from '../../../vuer/interfaces'; import { VideoMaterialProps } from './VideoMaterial'; import { HUDPlaneProps } from '../../HUDPlane'; export type WebRTCVideoPlaneProps = VuerProps<{ src: string; iceServer?: RTCIceServer; webRTCOptions?: RTCConfiguration; }> & HUDPlaneProps & VideoMaterialProps; export declare function WebRTCVideoPlane({ src, start, iceServer, webRTCOptions: webRTCOptions, ...props }: WebRTCVideoPlaneProps): import("react/jsx-runtime").JSX.Element;