import type { ActiveRun, KdToolResultContract, KdWorkingSet } from "./types.ts"; export declare function defaultWorkingSet(run: Pick, now?: string): KdWorkingSet; export declare function updateWorkingSetFromTool(run: ActiveRun, toolResult: KdToolResultContract, now?: string): KdWorkingSet; export declare function updateWorkingSetFocus(run: ActiveRun, input: { focus: string; activeGap?: string; currentAction?: string; blockedBy?: string; }, now?: string): KdWorkingSet; export declare function formatWorkingSet(workingSet: KdWorkingSet | undefined, run: ActiveRun): string; export declare function normalizeWorkingSet(value: KdWorkingSet | undefined, run: Pick, now?: string): KdWorkingSet;