import type { ExtensionContext } from "@earendil-works/pi-coding-agent"; import { GitOperations } from "./git-operations.js"; /** * Shared footer-status updater for the commit pipeline and organiser. * * Pipeline and organiser never import this class — it is used exclusively * by the presenter in index.ts, both in the success and error paths. */ export declare class StatusIndicator { private git; private ctx; constructor(git: GitOperations, ctx: ExtensionContext); updateFooter(): Promise; } //# sourceMappingURL=status-indicator.d.ts.map