import { Cluster } from "@solana/web3.js"; export type ValidatorsAppValidatorRaw = { active_stake?: number | null; commission?: number | null; total_score?: number | null; vote_account?: string | null; name?: string | null; avatar_url?: string | null; delinquent?: boolean | null; www_url?: string | null; }; export type ValidatorsAppValidator = { activeStake: number; commission: number; totalScore: number; voteAccount: string; name?: string | undefined; avatarUrl?: string | undefined; wwwUrl?: string | undefined; apy?: number | undefined; }; export declare function getValidators(cluster: Extract): Promise; //# sourceMappingURL=index.d.ts.map