import { DialogState } from "../say/UIDialog"; import { GameState } from "../../gameState"; import type { NvlDialogEntry } from "../../gameState"; import type { Word } from "../../../nlcore/elements/character/word"; import type { Pausing } from "../../../nlcore/elements/character/pause"; type UseNvlDialogStateParams = { entry: NvlDialogEntry; gameState: GameState; words: Word[]; isActive: boolean; useTypeEffect: boolean; }; export declare function useNvlDialogState({ entry, gameState, words, isActive, useTypeEffect, }: UseNvlDialogStateParams): DialogState; export {};