import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; interface ParsedArgs { mode: "empty" | "file" | "text"; seed: string; sourceLabel: string; } export declare function parseSprintIntakeArgs(rawArgs: string, cwd: string): ParsedArgs; export declare function composeKickoff(workflowMd: string, parsed: ParsedArgs): string; export declare function registerSprintIntake(pi: ExtensionAPI): void; export {};