import React from 'react'; export type FullScreenProps = { children: React.ReactNode; }; export declare function FullScreen({ children }: FullScreenProps): React.ReactNode; export declare function getFullScreen(props: FullScreenProps): React.ReactNode;