export interface SwitchAccountSubmenuProps { className?: string; } /** * Render a dropdown submenu for switching between multiple authenticated sessions. * * This component renders as a submenu trigger that opens the switch account menu. * It should be rendered inside a Dropdown.Menu. * * @param className - Optional additional CSS class names * @returns The switch account submenu as a JSX element */ export declare function SwitchAccountSubmenu({ className }: SwitchAccountSubmenuProps): import("react").JSX.Element | null;