interface BrowserSession {
/** Unique session identifier */
sessionId: string;
/** CDP WebSocket URL for Playwright/Puppeteer */
wsEndpoint: string;
/** ISO 8601 timestamp of session creation */
createdAt: string;
/** Close the session and release all resources */
close(): Promise<void>;
}