import type { Sandbox } from '@cloudflare/sandbox'; /** * Default path to agent-server executable */ export declare const DEFAULT_AGENT_SERVER_PATH = "/container-server/software-agent-sdk/.venv/bin/agent-server"; /** * Default working directory for agent-server */ export declare const DEFAULT_AGENT_SERVER_DIR = "/container-server/software-agent-sdk"; /** * Get the default agent-server executable path */ export declare function getDefaultAgentServerPath(): string; /** * Get the default agent-server working directory */ export declare function getDefaultAgentServerDir(): string; /** * Check if agent-server exists at the given path */ export declare function checkAgentServerExists(sandbox: Sandbox, path?: string): Promise; /** * Find agent-server executable by checking common locations */ export declare function findAgentServerPath(sandbox: Sandbox): Promise; /** * Build the agent-server command */ export declare function buildAgentServerCommand(port: number, directory?: string): string; //# sourceMappingURL=agent-server.d.ts.map