/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; interface ProgressBarProps { readonly progress: number | undefined; readonly width?: number; /** * Draws the bar a step further from the page color. For the one bar that * reports on the whole run rather than on a task inside it — the eye should * find it first among a screenful of identical bars. */ readonly emphasis?: boolean; } export declare function ProgressBar({ progress, width, emphasis, }: ProgressBarProps): React.ReactElement; export {};