/** * Request type for getBlockHeight RPC method */ import { SolanaCommitment } from '../base'; export interface GetBlockHeightOptions { commitment?: SolanaCommitment; minContextSlot?: number; } export interface GetBlockHeightRequest { options?: GetBlockHeightOptions; } export type EncodedGetBlockHeightRequest = [GetBlockHeightOptions?]; export declare function encodeGetBlockHeightRequest(request?: GetBlockHeightRequest): EncodedGetBlockHeightRequest;