import * as React from 'react'; import { FC } from 'react'; interface FullScreenProps { height: number; width: number; children?: React.ReactNode; } declare const FullScreen: FC; export default FullScreen;