import type { InternalResource, InternalUrl, ProtocolHandler } from "./types"; /** * Handler for agent:// URLs. * * Resolves output IDs like "reviewer_0" to their artifact files, * with optional JSON extraction. */ export declare class AgentProtocolHandler implements ProtocolHandler { readonly scheme = "agent"; readonly immutable = true; resolve(url: InternalUrl): Promise; }