import * as React from 'react'; import { StyleProp, TextStyle } from 'react-native'; import { ITheme } from '@ef-carbon/react-native-style'; export declare type OnClose = () => void; export interface IProps { onClose?: OnClose; theme?: ITheme; style?: StyleProp; } export interface IState { } declare class Fullscreen extends React.PureComponent { render(): React.ReactNode; } export interface IStatic extends React.ComponentClass { } declare const component: IStatic; export { component as Component }; export default Fullscreen;