import React from 'react'; interface Props { backgroundColor: string; children: React.ReactNode; minHeight: string; mp4: string; src: string; theme: string; webm: string; } declare const CoverBackground: ({ backgroundColor, children, minHeight, mp4, src, theme, webm }: Props) => JSX.Element; export default CoverBackground;