import React from 'react'; import './Iframe.less'; import { PropsTypes } from '@orca-fe/deye-typings'; export interface IframeProps extends React.IframeHTMLAttributes { } declare const Iframe: { (props: IframeProps): JSX.Element; title: string; propsDef: PropsTypes[]; defaultProps: { src: string; style: { height: number; }; }; style: boolean; }; export default Iframe;