import { type DurableSessionState } from "#execution/durable-session-store.js";
/**
 * Cancels every running delegated child recorded in the agent handle store
 * and every workflow tool run the turn is waiting on.
 */
export declare function cancelDescendantTurnsStep(input: {
    readonly serializedContext: Record<string, unknown>;
    readonly sessionState: DurableSessionState;
}): Promise<void>;
