import React from 'react'; export type IframeTypes = { allow?: string; allowFullScreen?: boolean; className?: string; appendClassName?: string; controls?: boolean; height?: number | string; loading?: 'eager' | 'lazy'; src: string; title: string; width?: number | string; style?: React.CSSProperties; }; export declare const Iframe: ({ allow, allowFullScreen, className, appendClassName, height, width, loading, src, title, style }: IframeTypes) => JSX.Element;