/** @jsxImportSource preact */ /** * @license * Copyright 2026 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { JSX } from "preact"; import { type RunViewState } from "../state"; export declare function RunConsole({ cli, state, elapsedMs, tick, sortByStatus, selectedId, connected, mapView, onMapView, onSelect, onAbort, canAbort, }: { cli: string; state: RunViewState; elapsedMs: number; tick: number; sortByStatus: boolean; selectedId: string | undefined; connected: boolean; mapView: "rows" | "grid"; onMapView: (view: "rows" | "grid") => void; onSelect: (id: string) => void; onAbort: () => void; /** False while the CLI is not answering; the abort would reach nothing. */ canAbort?: boolean; }): JSX.Element;