import React from 'react'; import type { CommonProps, CommonWrapperRestProps } from '@skbkontur/react-ui/internal/CommonWrapper'; import type { TopBarButtonItemProps } from './TopBarButtonItem.js'; export interface TopBarLogoutProps extends CommonProps, TopBarButtonItemProps { } /** * Кнопка выхода * * @visibleName TopBar.Logout */ export declare class TopBarLogout extends React.Component { static __KONTUR_REACT_UI__: string; static displayName: string; static defaultProps: { use: string; }; private readonly locale; render(): JSX.Element; renderMain: (props: CommonWrapperRestProps) => JSX.Element; }