import type { SuiGrpcClient } from '@mysten/sui/grpc'; import type { OffchainLookup } from '../types/index.js'; import { type OffchainLookupHandler } from './base.js'; /** * Handler for ObjectField lookups (gRPC). * * Process: * 1. Fetch the parent object's JSON content. * 2. Navigate the field_path (e.g. "metadata.symbol"). * 3. Convert the final value to bytes. * * NOTE: not exercised by the production resolver. Implemented for completeness; * unverified against live mainnet. Uses json for field navigation. */ export declare class ObjectFieldHandler implements OffchainLookupHandler> { resolve(lookup: Extract, client: SuiGrpcClient): Promise; private valueToBytes; } //# sourceMappingURL=object-field.d.ts.map