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