import type { MenuProps } from 'antd'; import React from 'react'; import type { Translations } from '../../lang'; import type { User } from '../../web-components/mlc-layout/types'; export interface UserMenuProps { canLogout: boolean | undefined; locale: Translations['MLC-LAYOUT'] | undefined; onUserMenuClick: MenuProps['onClick'] | undefined; user: User; } export declare const UserMenu: React.FC;