import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; export interface ParsedAddTaskArgs { sprintId: string | null; title: string | null; estimate: string | null; pipeline: string | null; seed: string; sourceLabel: string; } export declare function parseAddTaskArgs(rawArgs: string, cwd: string): ParsedAddTaskArgs; export interface ComposeAddTaskKickoffOpts { commandMd: string; parsed: ParsedAddTaskArgs; } export declare function composeAddTaskKickoff(opts: ComposeAddTaskKickoffOpts): string; export interface RegisterAddTaskOptions { forgeRoot: string | null; cwd?: string; } export declare function registerAddTask(pi: ExtensionAPI, options: RegisterAddTaskOptions): void;