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