/// import './index.less'; interface IFullScrenProps { className?: string; getContainer: () => HTMLElement | Element; fullScreenChange?: (flag: boolean) => void; } declare function FullScreen({ className, getContainer, fullScreenChange }: IFullScrenProps): JSX.Element; export default FullScreen;