import { FetchState, ID } from '@zeniai/client-epic-state'; export interface Props { companyId: ID; tenantName: string; updateFetchState?: FetchState; onReset: (companyId: ID) => void; onUpdate: (companyId: ID, realmId: string) => void; } export declare const RealmIdManagementCell: ({ companyId, tenantName, updateFetchState, onReset, onUpdate, }: Props) => import("react/jsx-runtime").JSX.Element;