import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; import { extractPersonaNames } from "../lib/frontmatter-parser.js"; export { extractPersonaNames }; export type ArgMode = "empty" | "file" | "text"; export interface ParsedArgs { mode: ArgMode; sprintRef: string; sourceLabel: string; } export declare function parseRetroArgs(rawArgs: string, cwd: string): ParsedArgs; export interface ComposeKickoffOpts { workflowMd: string; personaIdentity: string; parsed: ParsedArgs; } export declare function composeKickoff(opts: ComposeKickoffOpts): string; export interface RegisterRetrospectiveOptions { cwd?: string; } export declare function registerRetrospective(pi: ExtensionAPI, options?: RegisterRetrospectiveOptions): void;