import { type BashExecutionState } from '../services/bash-executor.js';
interface BashProgressProps {
    executionId: string;
    command: string;
    /** If provided, renders a static completed state without event subscription */
    completedState?: BashExecutionState;
    /** If true, renders with reduced margins for live display */
    isLive?: boolean;
}
export default function BashProgress({ executionId, command, completedState, isLive, }: BashProgressProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=bash-progress.d.ts.map