import React from "react"; import type { SrcProps } from "../interface"; export type IKVideoProps = Omit & SrcProps; /** * The Video component is a wrapper around the HTML video element. It supports all the features of the HTML video element, along with additional features provided by ImageKit. * * @example * ```jsx * import { Video } from "@imagekit/react"; *