import type { Components, JSX } from "../types/components"; interface WfVideo extends Components.WfVideo, HTMLElement {} export const WfVideo: { prototype: WfVideo; new (): WfVideo; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;