/// import { GroupProps } from "@react-three/fiber"; import { Material } from "three"; type Props = { src: string; size?: number; framed?: boolean; muted?: boolean; volume?: number; frameMaterial?: Material; frameWidth?: number; } & GroupProps; export declare function Video(props: Props): import("react").JSX.Element | null; export {};