import type { AgentInfo } from './agentInfo'; /** * Detailed Agent view combining AgentInfo (discovery), * on-chain identity, IPFS registration, and extra flattened fields. */ export interface AgentDetail extends AgentInfo { success: true; identityMetadata: { tokenUri: string | null; metadata: Record; }; identityRegistration: { tokenUri: string; registration: Record | null; } | null; [key: string]: unknown; } export type AgentIdentifier = string | bigint; //# sourceMappingURL=agentDetail.d.ts.map