import { SuiGrpcClient } from '@mysten/sui/grpc'; import type { SuiClientTypes } from '@mysten/sui/client'; type SuiBatchClientOptions = { scheduleTimeMs: number; network: 'mainnet' | 'testnet' | 'devnet' | 'localnet'; baseUrl: string; }; export declare class SuiBatchClient extends SuiGrpcClient { #private; scheduleTimeMs: number; constructor(options: SuiBatchClientOptions); getObject(input: SuiClientTypes.GetObjectOptions): Promise>; } export {};