import React from 'react'; import { VideoPlayerCardProps } from '@zhst/biz'; import './index.less'; interface WindowToggleProps { dataSource?: VideoPlayerCardProps[]; handleWindowClick?: (key?: string) => void; handleCloseButtonClick?: (key?: string) => void; selectedWindowKey?: string; } export declare const WindowToggle: React.FC; export default WindowToggle;