import React from 'react'; import PropTypes from 'prop-types'; import type { CommonProps } from '@skbkontur/react-ui/internal/CommonWrapper'; export interface TopBarUserProps extends CommonProps { userName: string; cabinetUrl?: string; } /** * Меню работы с кабинетом пользователя * * @visibleName TopBar.User */ export declare class TopBarUser extends React.Component { static __KONTUR_REACT_UI__: string; static displayName: string; static defaultProps: { cabinetUrl: string; }; static propTypes: { userName: PropTypes.Requireable; /** * URL для кастомизации ссылок в меню пользователя */ cabinetUrl: PropTypes.Requireable; }; private readonly locale; private theme; render(): JSX.Element; }