import { Choice as InkChoice } from 'inkjs/engine/Choice'; import { Choice } from '../types'; type StoryChoices = { choices: Choice[]; choicesVisible: boolean; setChoices: (choices: InkChoice[]) => void; clear: () => void; setChoicesVisible: (v: boolean) => void; }; declare const choicesStore: import('zustand').UseBoundStore>; export default choicesStore;