import type { SessionId } from "@agentclientprotocol/sdk"; export type AcpSession = { sessionId: SessionId; sessionKey: string; cwd: string; createdAt: number; abortController: AbortController | null; activeRunId: string | null; }; export type AcpServerOptions = { gatewayUrl?: string; gatewayToken?: string; gatewayPassword?: string; defaultSessionKey?: string; defaultSessionLabel?: string; requireExistingSession?: boolean; resetSession?: boolean; prefixCwd?: boolean; verbose?: boolean; }; export declare const ACP_AGENT_INFO: { name: string; title: string; version: string; };