declare const exampleSessionManagement: { createSession: { tool: string; args: { username: string; password: string; duration: number; }; expectedResponse: { sessionId: string; userId: string; username: string; roles: string[]; tokens: { accessToken: string; refreshToken: string; expiresIn: string; }; }; }; listSessions: { tool: string; args: { userId: string; }; expectedResponse: { sessions: string; count: string; }; }; deleteSession: { tool: string; args: { sessionId: string; }; expectedResponse: { success: boolean; message: string; }; }; createBrowserContext: { tool: string; args: { sessionId: string; name: string; options: { headless: boolean; viewport: { width: number; height: number; }; }; }; expectedResponse: { contextId: string; name: string; type: string; status: string; }; }; executeApiWithSession: { tool: string; args: { protocol: string; operation: { method: string; endpoint: string; }; auth: { type: string; credentials: string; }; }; expectedResponse: {}; }; invalidLogin: { tool: string; args: { username: string; password: string; }; expectedError: { error: string; code: string; }; }; }; declare const demoUsers: { username: string; password: string; roles: string[]; description: string; }[]; export { exampleSessionManagement, demoUsers }; //# sourceMappingURL=session-management.d.ts.map