export interface UltraworkState { active: boolean; objective: string; taskSummary?: string; startedAt: string; sessionId?: string; projectPath: string; taskCount: number; } export interface StartUltraworkOptions { cwd?: string; objective: string; taskSummary?: string; sessionId?: string; taskCount?: number; } export declare function startUltrawork(opts: StartUltraworkOptions): UltraworkState; export declare function readUltrawork(cwd?: string): UltraworkState | undefined; export declare function cancelUltrawork(cwd?: string): void; export declare function buildUltraworkContext(state: UltraworkState): string;