/** Builds the session header markdown block. */ export declare function buildSessionHeader(argv: string[]): { markdown: string; }; interface HttpRequestEntry { n: number; kind: "GraphQL" | "REST" | "restText"; method: string; url: string; body?: unknown; } interface HttpResponseEntry { n: number; kind: "GraphQL" | "REST" | "restText"; method: string; url: string; status: number; durationMs: number; /** Parsed response body. Omit for restText. */ body?: unknown; /** Raw text response body. Omit for restText. */ textBody?: string; contentType?: string; contentLength?: number; /** Set on 401-retry invocations. */ attempt?: number; authSource?: string; rateLimit?: { resource?: string; limit: number; used?: number; remaining: number; resetAt: number; cost?: number; nodeCount?: number; }; retryAfterSeconds?: number; } export declare function formatRequestEntry(entry: HttpRequestEntry): string; export declare function formatResponseEntry(entry: HttpResponseEntry): string; export declare function formatOutputEntry(text: string, format: "text" | "json"): string; export {};