import { AthenaAuthSession } from '@xylex-group/athena'; export interface ActiveSessionProps { activeSession: AthenaAuthSession; } /** * Render a single active session row with device info and revoke control. * * Shows the session's browser, OS, IP address, and creation time. The current session is marked * and navigates to sign-out on click, while other sessions can be revoked individually. * * @param session - The session object containing id, token, userAgent, ipAddress, and createdAt * @returns A JSX element containing the active session row */ export declare function ActiveSession({ activeSession }: ActiveSessionProps): import("react").JSX.Element;