import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; /** * pi-git extension — `/git-commit` and `/git-status` commands * * `/git-commit` stages all current files, generates a Conventional Commits * message, and commits. * `/git-status` shows the working tree status in a scrollable TUI viewer. * * The heavy lifting is delegated to `runCommitPipeline` in `pipeline.ts`; * this module (the presenter) only registers commands and maps * pipeline events to UI calls. */ export default function (pi: ExtensionAPI): void; //# sourceMappingURL=index.d.ts.map