import { VideoMaterialProps } from './VideoMaterial'; import { HUDPlaneProps } from '../../HUDPlane'; import { VuerProps } from '../../../vuer'; export type VideoPlaneProps = VuerProps<{ /** * @dial video * @dial-cols 2 * @dial-dtype string */ src: string; /** * @dial video * @dial-dtype string */ unsuspend?: keyof HTMLVideoElementEventMap; /** * @dial video * @dial-dtype boolean */ start?: boolean; hls?: unknown; onVideoFrame?: VideoFrameRequestCallback; }> & HUDPlaneProps & VideoMaterialProps; export declare function VideoPlane({ src, start, ...props }: VideoPlaneProps): import("react/jsx-runtime").JSX.Element;