import { HashtagHandler } from '@drincs/pixi-vn-ink'; /** * This function returns a HashtagHandler that can be used in a Ink script to handle NQTR-specific commands for managing rooms, time, date, activities, routines, and quests. The handler supports commands like "enter room", "set time", "set date", "add/remove activity", "add/remove routine", "start/continue quest", and "wait". The function accepts an optional configuration object that allows you to provide custom implementations for time conversion, date conversion, and waiting logic. If no custom implementations are provided, default ones will be used. * @example * ```ts * import { nqtrHandler } from '@drincs/nqtr/ink'; * import { HashtagCommands } from '@drincs/pixi-vn-ink'; * * HashtagCommands.add(nqtrHandler()); * ``` * @param options An object containing optional custom implementations for time conversion, date conversion, and waiting logic. If not provided, default implementations will be used. * @returns A HashtagHandler function that can be used in a Ink script to handle NQTR-specific commands for managing rooms, time, date, activities, routines, and quests. */ declare const nqtrHandler: () => HashtagHandler; export { nqtrHandler };