/** * Check if the agent process is running */ export declare function isAgentRunning(): { running: boolean; pid?: number; }; /** * Start the agent as a background daemon * @param profileName - Optional profile name to use */ export declare function startAgentDaemon(profileName?: string | null): Promise<{ success: boolean; pid?: number; error?: string; }>; /** * Stop the running agent */ export declare function stopAgent(): { success: boolean; error?: string; }; /** * Restart the agent */ export declare function restartAgent(): Promise<{ success: boolean; pid?: number; error?: string; }>; /** * Get agent health status by checking the API */ export declare function getAgentHealth(port: number): Promise<{ healthy: boolean; sessions?: number; error?: string; }>; //# sourceMappingURL=process.d.ts.map