import { CSSProperties, FC } from 'react'; export interface IframeProps { src: string; width: string; height: string; style: CSSProperties; } export declare const Iframe: FC; export default Iframe;