type Props = { videoSrc: string; height?: number; width?: number; autoplay?: boolean; muted?: boolean; controls?: boolean; loop?: boolean; }; export default function RpVideo({ videoSrc, height, width, autoplay, muted, controls, loop, }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=rp-video.component.d.ts.map