/** * Non-interactive mode utility * 非対話モードユーティリティ */ /** * Check if running in non-interactive mode * 非対話モードで実行中かチェック */ export declare function isNonInteractive(): boolean; /** * Wrapper for inquirer.prompt with non-interactive support * 非対話モード対応のinquirer.promptラッパー */ export declare function promptOrDefault(promptFn: () => Promise, defaultValue: T, options?: { nonInteractive?: boolean; yes?: boolean; }): Promise; /** * Simple confirm with non-interactive support * 非対話モード対応のシンプル確認 */ export declare function confirmOrDefault(message: string, defaultValue: boolean, options?: { nonInteractive?: boolean; yes?: boolean; }): Promise; //# sourceMappingURL=interactive.d.ts.map