import { FC } from 'react'; import './index.less'; interface FullScreenProps { onChange?: (value: boolean) => void; className?: string; zIndex?: number; value?: boolean; } declare const FullScreen: FC; export default FullScreen;