/** * Request for getBlockCommitment */ import { BaseSolanaRequest } from '../base'; export interface GetBlockCommitmentRequest extends BaseSolanaRequest { slot: number | bigint; } export type EncodedGetBlockCommitmentRequest = [number]; export declare function encodeGetBlockCommitmentRequest(req: GetBlockCommitmentRequest): EncodedGetBlockCommitmentRequest;