import type Client from '../Client'; import ResourceList from '../ResourceList'; import Election from '../models/Election'; interface ListParams { cursor?: string; } export default class Elections { private client; constructor(client: Client); list(params?: ListParams): Promise>; get(hash: string): Promise; } export {}; //# sourceMappingURL=Elections.d.ts.map