import React from 'react'; import type { CommonProps } from '@skbkontur/react-ui/internal/CommonWrapper'; import type { UserAvatarProps } from '../UserAvatar/index.js'; export interface TopBarAvatarProps extends CommonProps, UserAvatarProps { cabinetUrl?: string; onLogout?: () => void; } /** * Аватар пользователя */ export declare class TopBarAvatar extends React.Component { static __KONTUR_REACT_UI__: string; static displayName: string; static defaultProps: { cabinetUrl: string; }; private theme; private readonly locale; render(): JSX.Element; private renderMain; }