import React from "react"; import { PbEditorElement } from "../../../../../types"; interface IframeProps { element: PbEditorElement; } declare const Iframe: (props: IframeProps) => React.JSX.Element; export default Iframe;