/** 사용자의 입력을 제어한다 */ export interface ControlCmd { /** 제어할 액션의 종류입니다. (현재 'disable'만 지원) */ action: 'disable'; /** 입력 제어를 유지할 시간(ms)입니다. */ duration: number; /** duration이 완료된 후 자동으로 넘어갈지 여부입니다. 기본값은 true 입니다. */ autoAdvance?: boolean; } export interface ControlSchema { } declare const controlModule: import("..").NovelModule; export default controlModule; /** @internal */ export declare const controlHandler: (p: any, ctx: any) => Generator;