/** * Response type for getInflationReward RPC method */ export interface InflationRewardItem { epoch: number; effectiveSlot: number; amount: bigint; postBalance: bigint; commission?: number; } export type InflationRewardResponse = Array; export declare function createInflationRewardResponse(data: unknown): InflationRewardResponse;