import { AthenaAuthSession } from '@xylex-group/athena'; export declare function normalizeAthenaSession(value: unknown): AthenaAuthSession | null; export declare function normalizeAthenaSessionList(result: unknown): AthenaAuthSession[]; /** * List sessions for a resolved user id. The caller owns identity gating; * this hook does not call `useAthenaSession`. */ export declare function useSafeListSessions(authClient: unknown, userId?: string): import('../../query/tanstack.js').AthenaQueryResult & { data: AthenaAuthSession[] | undefined; isPending: boolean; };