import { FunctionComponent } from "react"; export type ScreenProps = { width?: number; height?: number; show?: boolean; }; declare const Screen: FunctionComponent; export { Screen };