import type Client from '../Client'; import Validator from '../models/Validator'; import ResourceList from '../ResourceList'; import Account from '../models/Account'; import Stats from './Stats'; interface ListParams { cursor?: string; } type Context = Account; export default class Validators { private client; private context?; constructor(client: Client, context?: Context); fromAddress(address: string): Validator; search(term: string): Promise>; list(params?: ListParams): Promise>; private fetchList; get(address: string): Promise; elected(block?: number): Promise>; get stats(): Stats; } export {}; //# sourceMappingURL=Validators.d.ts.map