import { ListDeviceSession } from '../../../compat/better-auth/react.js'; export interface SwitchAccountSubmenuItemProps { deviceSession: ListDeviceSession; } /** * Render a dropdown item for switching to a different authenticated session. * * @param deviceSession - The device session to display and switch to when pressed * @returns The switch account dropdown item as a JSX element */ export declare function SwitchAccountSubmenuItem({ deviceSession }: SwitchAccountSubmenuItemProps): import("react").JSX.Element;