import * as React from "react"; export interface EmbedProps { content: string; } declare function Embed(props: EmbedProps): React.JSX.Element; export default Embed;