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