/** * Global type declarations for E2E tests */ declare global { interface Window { __TEST_AUTH_STORE__?: { getState: () => { isAuthenticated: boolean; user: { id: string; email: string; is_superuser: boolean } | null; accessToken: string | null; refreshToken: string | null; }; }; } } export {};