export type TFancyVideo = { autoPlay?: boolean; muted?: boolean; aspectRatio?: string; darken?: number; }; export type FancyVideoHTMLProps = React.HTMLAttributes; export type TFancyVideoWithHTMLAttrs = TFancyVideo & FancyVideoHTMLProps;