import React from 'react'; import type { CommonProps, CommonWrapperRestProps } from '@skbkontur/react-ui/internal/CommonWrapper'; export interface TopBarOrganizationsProps extends CommonProps { caption: React.ReactNode; comment?: string | null | undefined; } export interface TopBarOrganizationsState { captionWhiteSpace: React.CSSProperties['whiteSpace']; minWidth: number | null | undefined; } /** * Дропдаун с организациями * * @visibleName TopBar.OrganizationsDropdown */ export declare class TopBarOrganizations extends React.Component { static __KONTUR_REACT_UI__: string; static displayName: string; state: { captionWhiteSpace: React.CSSProperties["whiteSpace"]; minWidth: null; }; private theme; private styles; private emotion; private _caption; private _comment; private topBarDropdown; componentDidMount(): void; componentDidUpdate(prevProps: TopBarOrganizationsProps): void; render(): JSX.Element; renderMain: (props: CommonWrapperRestProps) => JSX.Element; open: () => void; close: () => void; private refTopBarDropdown; private _getCaptionRef; private _getCommentRef; private _recalculateWidth; }