import type { SuiGrpcClient } from '@mysten/sui/grpc'; import type { OffchainLookup } from '../types/index.js'; import { type OffchainLookupHandler } from './base.js'; /** * Handler for DynamicObjectField lookups (gRPC). * * Process: * 1. Fetch the dynamic OBJECT field by its vector key. * 2. Extract the child object's ObjectRef (object_id, version, digest). * 3. Return the packed ObjectRef bytes. * * NOTE: not exercised by the production resolver. Implemented for completeness; * unverified against live mainnet. */ export declare class DynamicObjectFieldHandler implements OffchainLookupHandler> { resolve(lookup: Extract, client: SuiGrpcClient): Promise; } //# sourceMappingURL=dynamic-object-field.d.ts.map