import { FC } from 'react'; import './index.less'; import { DynamicPageProps } from '@/types'; interface FloatWindowProps { visible: boolean; onClose: (key: string) => void; pageId: string; pageName: string; componentState?: Record; lcdpParentRenderId: string; instId: string; appId: string; location: 'left' | 'right'; url?: string; size?: { height?: string; width?: string; }; parseNodeBefore: DynamicPageProps['parseNodeBefore']; } declare const FloatWindow: FC; export default FloatWindow;