import * as React from "react"; import { StyleProp, TextStyle } from "react-native"; import { ITheme } from "@ef-carbon/react-native-style"; import IFullscreen from "../../../../IFullscreen"; export declare type OnOpenFullscreen = () => IFullscreen; export interface IProps { onOpenFullscreen?: OnOpenFullscreen; 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;