import { default as React } from 'react'; type IFancyVideoSourceProps = { src: string; type: string; } & React.SourceHTMLAttributes; export default function FancyVideoSource(props: IFancyVideoSourceProps): import("react/jsx-runtime").JSX.Element; export {};