export declare function useFullscreen<T extends HTMLElement>(): [
    React.RefObject<T | null>,
    boolean,
    () => void,
    () => void
];
