/** * Response type for getVoteAccounts RPC method */ export interface EpochCreditEntry { epoch: number; credits: number; previousCredits: number; } export interface VoteAccountInfo { votePubkey: string; nodePubkey: string; activatedStake: bigint; commission: number; epochVoteAccount: boolean; lastVote: number; rootSlot?: number; epochCredits?: EpochCreditEntry[]; } export interface VoteAccountsResponse { current: VoteAccountInfo[]; delinquent: VoteAccountInfo[]; } export declare function createVoteAccountsResponse(data: unknown): VoteAccountsResponse;