import { ApiService } from '../core/ApiService'; export declare class VoteService { private api; LIMIT: number; constructor(api: ApiService); getResults(id: any): any; voteExists(id: any): any; voteFor(id: any, option: any): any; revokeVote(id: any): any; }