import { ListDeviceSession } from '../../../compat/better-auth/react.js'; export interface ManageAccountProps { deviceSession?: ListDeviceSession | null; isPending?: boolean; } /** * Render a single account row with user info and a dropdown for switch/sign-out actions. * * Shows the user's avatar and info. A three-dot menu provides options to * switch account (for non-active sessions) and sign out. * * @param deviceSession - The device session object containing session and user data * @returns A JSX element containing the account row */ export declare function ManageAccount({ deviceSession, isPending }: ManageAccountProps): import("react").JSX.Element;