import * as React from 'react'; export interface IframeContainerProps { /** * 类型 */ style?: object; width?: string | number; height?: string | number; src: string; joinParams?: boolean; isSoubi?: boolean; params?: Array<{ key: string; value: string; }>; } declare const IframeContainer: React.FC; export default IframeContainer;