import type { Theme } from '../../types/props.js'; export interface InlineVideoData { title: string; subtitle?: string; desc: string; poster?: string; videoUrl: string; mobPoster?: string; mobVideoUrl: string; theme?: Theme; } export interface InlineVideoProps extends React.HTMLAttributes { data: InlineVideoData; } export default function VideoWithTitle({ data, className, ...rest }: InlineVideoProps): import("react/jsx-runtime").JSX.Element;