/** * This is a component that adds a link to the transcript for embedded videos in articles. */ import * as React from "react"; type Props = { location: string; }; /** * Video Transcript Link Component. */ declare const VideoTranscriptLink: (props: Props) => React.ReactElement; export default VideoTranscriptLink;