import type { ModuleKeysOf } from '../types/config'; /** UI 모듈을 show/hide 한다 */ export interface UICmd { /** 조작할 모듈의 이름(modules의 key)입니다. */ name: ModuleKeysOf; /** 수행할 동작(보이기/숨기기)입니다. */ action: 'show' | 'hide'; /** 전환 애니메이션의 지속 시간(ms)입니다. */ duration?: number; } declare const uiModule: import("..").NovelModule, Record, import("..").DefaultHook>; export default uiModule; /** @internal */ export declare const uiHandler: (p: any, ctx: any) => Generator;