import { Choice as InkChoice } from 'inkjs/engine/Choice'; import { Choice } from '../types'; type ChoiceHandlerFn = (choice: Choice, val?: string) => void; export declare class ChoiceHandler { private static _handlers; private static readonly _builtins; static get handlers(): Map; static clear: () => void; static add: (tag: string, callback: ChoiceHandlerFn) => void; static process: (item: InkChoice, choice: Choice) => Choice | undefined; } export {};