import { FC } from 'react'; import type { DirectLineVideoCard } from 'botframework-webchat-core'; type VideoCardContentProps = { actionPerformedClassName?: string; content: DirectLineVideoCard & { autoloop?: boolean; autostart?: boolean; image?: { url?: string; }; media?: { profile?: string; url?: string; }[]; }; disabled?: boolean; }; declare const VideoCardContent: FC; export default VideoCardContent; //# sourceMappingURL=VideoCardContent.d.ts.map