import { HttpCommandBase } from '../../infrastructure/api/httpCommandBase'; import { HttpMethod } from '../../infrastructure/api/httpMethod'; import { Poll } from '../models/poll'; export declare class PollVoteCommand extends HttpCommandBase { shouldPersonalize: boolean; endpoint: string; method: HttpMethod; answerId: string; constructor(answerId: string); buildEndpoint(): string; }