import * as React from 'react'; export interface ScreenProps { className?: string | string[]; color: string; style?: object; type: string; infoComponent?: React.ReactNode; } export declare class Screen extends React.Component { state: { showInfo: boolean; }; private onShowInfo; render(): JSX.Element; }