import React from 'react'; export interface FullScreenHandle { active: boolean; enter: () => Promise; exit: () => Promise; node: React.MutableRefObject; } export interface FullScreenProps { handle: FullScreenHandle; children: any; onChange?: (state: boolean, handle: FullScreenHandle) => void; className?: string; } export declare function useFullScreenHandle(): FullScreenHandle; export declare const FullScreen: React.FC;