import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; export interface ParsedStoreRepairArgs { dryRun: boolean; seed: string; sourceLabel: string; } export declare function parseStoreRepairArgs(rawArgs: string, cwd: string): ParsedStoreRepairArgs; export interface ComposeStoreRepairKickoffOpts { commandMd: string; parsed: ParsedStoreRepairArgs; } export declare function composeStoreRepairKickoff(opts: ComposeStoreRepairKickoffOpts): string; export interface RegisterStoreRepairOptions { forgeRoot: string | null; cwd?: string; } export declare function registerStoreRepair(pi: ExtensionAPI, options: RegisterStoreRepairOptions): void;