import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; interface ParsedArgs { sprintId: string; seedMode: "none" | "file" | "text"; seed: string; sourceLabel: string; } export declare function parseSprintPlanArgs(rawArgs: string, cwd: string): ParsedArgs; export declare function composeKickoff(workflowMd: string, parsed: ParsedArgs, requirements: { path: string; content: string; } | null): string; export declare function registerSprintPlan(pi: ExtensionAPI): void; export {};