import React from 'react'; import './index.less'; interface OrganizationTenantSwitcherProps { onChange?: (value: string, option: any) => void; value: string; options: { label: string; value: string; logo?: string; }[]; showLogo?: boolean; showName?: boolean; readOnly?: boolean; onClick?: React.MouseEventHandler; } declare const OrganizationTenantSwitcher: React.FC; export default OrganizationTenantSwitcher;