/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { CommandContext } from '../commands/types.js'; /** * Creates a UI context object with no-op functions. * Useful for non-interactive environments where UI operations * are not applicable. */ export declare function createNonInteractiveUI(): CommandContext['ui'];