/** * WebFetch capability — fetch web page content. */ import type { CapabilityHandler } from '../agent/types.js'; /** * Drop every cached fetch so a fresh session doesn't serve stale content * that was fetched under the previous session's intent. The 15-minute TTL * would eventually catch this, but we'd rather start clean. */ export declare function clearSessionState(): void; export declare const webFetchCapability: CapabilityHandler;