import { CardProps } from '@heroui/react'; export interface ManageAccountsProps { className?: string; variant?: CardProps["variant"]; } /** * Render a card that lists and manages all device sessions for the current user. * * Shows each session with user information and actions to switch to or revoke a session. * When device session data is loading, a pending placeholder row is displayed. * * @returns A JSX element containing the accounts management card */ export declare function ManageAccounts({ className, variant }: ManageAccountsProps): import("react").JSX.Element;