/** * @license * Copyright 2026 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import { taskDetailText } from "../model/runRowModel"; /** Column width holds the widest value either state produces (`847ms`, `100%`). */ export declare const TASK_DETAIL_COLUMN_WIDTH = 6; export { taskDetailText }; export declare function TaskDetailColumn({ progress, durationMs, running, }: { readonly progress: number | undefined; readonly durationMs: number | undefined; readonly running: boolean; }): React.ReactElement;