import { DrawerProps } from 'antd'; import React from 'react'; import './index.less'; interface PlatformCompDrawProps extends DrawerProps { visible: boolean; onClose: () => void; src: string; iframeTitle?: string; } declare const IframeDrawer: React.FC; export default IframeDrawer;