/** * Response types for getLargestAccounts RPC method */ import { BaseCodec } from '../../codec/base'; /** * Individual account entry in the largest accounts response */ export interface LargestAccountEntry { /** Base58 encoded public key of the account */ address: string; /** Number of lamports in the account, as a bigint */ lamports: bigint; } /** * Response from getLargestAccounts RPC method */ export interface LargestAccountsResponse { /** Context information */ context: { /** The slot this value is valid for */ slot: number; }; /** Array of largest accounts */ value: LargestAccountEntry[]; } export declare const LargestAccountsResponseCodec: BaseCodec; /** * Create a LargestAccountsResponse from unknown data */ export declare function createLargestAccountsResponse(data: unknown): LargestAccountsResponse;