import React from "react"; import { NvlDialogEntry } from "../../gameState"; import { NvlContextValue } from "./type"; declare const NvlContext: React.Context; export declare function useNvl(): NvlContextValue; export declare function useNvlDialogs(): NvlDialogEntry[]; export declare function useIsNvlMode(): boolean; export declare function useIsNvlVisible(): boolean; export interface NvlProviderProps { children: React.ReactNode; } export declare function NvlProvider({ children }: NvlProviderProps): React.JSX.Element; export default NvlContext;