import * as React from 'react'; type IsPageVisibleContextValue = boolean; type Props = { isPageVisible: IsPageVisibleContextValue; children: React.ReactNode; }; export declare function IsPageVisibleProvider({ isPageVisible, children }: Props): import("react/jsx-runtime").JSX.Element; export default function useIsPageVisible(): boolean; export {};