import { type SyntheticEvent } from 'react'; import { type Organization } from '../types'; export type OrganizationButtonProps = { onClick: (event: SyntheticEvent) => void; isOpen: boolean; currentOrganization: Organization; isDisabled?: boolean; disableReason?: string; /** * Скрытие персональных данных от инструментов мониторинга */ isHidePersonalData?: boolean; }; export declare const OrganizationButton: import("react").ForwardRefExoticComponent>;