import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; type VideoBackgroundProps = { src?: string; poster?: string; overlay?: "light" | "medium" | "dark"; children?: React.ReactNode; className?: string; }; declare function VideoBackground({ src, poster, overlay, children, className, }: VideoBackgroundProps): react_jsx_runtime.JSX.Element; export { VideoBackground, type VideoBackgroundProps };