export { normalizeAthenaApiKeyList, normalizeAthenaApiKeyRecord } from '../contracts/normalize.js'; /** * List API keys for a resolved user id. The caller owns identity gating; * this hook does not call `useAthenaSession`. */ export declare function useSafeListApiKeys(authClient: unknown, userId?: string): import('../../query/tanstack.js').AthenaQueryResult & { data: import('@xylex-group/athena').AthenaApiKeyRecord[] | undefined; isPending: boolean; };