import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface VideoProps { autoPlay?: boolean | null; children?: ReactNode | null; muted?: boolean | null; poster?: string | { src: string; } | null; src?: string | null; title?: string | null; vimeoId?: string | null; } interface VideoWithSrcProps extends VideoProps { src: string; } interface VideoWithVimeoIdProps extends VideoProps { vimeoId: string; } /** * The `