import { ID, TenantBaseView } from '@zeniai/client-epic-state'; import { DisableMode } from '../formElements/common/common'; interface Props { currentTenantId: ID; expenseAutomationEnabledCompanies: ID[]; isZeniUser: boolean; tenants: TenantBaseView[]; isDisabled?: DisableMode; style?: React.CSSProperties; onTenantSelect?: (selectedTenantId: TenantBaseView) => void; } export default function TenantsDropDown({ currentTenantId, tenants, style, isZeniUser, isDisabled, expenseAutomationEnabledCompanies, onTenantSelect, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};