import type { SessionManager } from "@earendil-works/pi-coding-agent"; import type { EndpointMetadata } from "../transport/relay_client.js"; export declare const UNTITLED_SESSION_NAME = "Untitled session"; type SessionNameSource = Pick | null | undefined; type EndpointMetadataInput = { sessionManager: SessionNameSource; cwd: string; model?: string; thinking?: string; working: boolean; }; export declare function currentSessionName(sessionManager: SessionNameSource): string; export declare function buildEndpointMetadata({ sessionManager, cwd, model, thinking, working, }: EndpointMetadataInput): EndpointMetadata; export {};