/** * GetBlockTime request types and encoder */ import { BaseSolanaRequest } from '../base'; export interface GetBlockTimeRequest extends BaseSolanaRequest<{}> { readonly slot: number | bigint; } export type EncodedGetBlockTimeRequest = [number]; export declare function encodeGetBlockTimeRequest(params: GetBlockTimeRequest): EncodedGetBlockTimeRequest;