import { VuerProps } from '../../../vuer'; import { HUDPlaneProps } from '../../HUDPlane'; export type WebRTCStereoPlaneProps = VuerProps<{ src: string; iceServer?: RTCIceServer; rtcOptions?: RTCConfiguration; crossOrigin?: string; muted?: boolean; loop?: boolean; start?: boolean; playsInline?: boolean; side?: number; }> & HUDPlaneProps; export declare const WebRTCStereoVideoPlane: ({ src, iceServer, side, rtcOptions, crossOrigin, muted, loop, start, playsInline, ...props }: WebRTCStereoPlaneProps) => import("react/jsx-runtime").JSX.Element;