import { BaseService } from '../services/abstract/baseService'; import { Page } from '../stories/models/page'; import { StoryWithRowIndex } from '../stories/models/story'; declare class EngagementUnitsService extends BaseService { static sharedInstance: EngagementUnitsService; protected logTag: string; formatPollDeepLink: (deepLinkInternal: string, pollAnswerId: string) => string; formatQuizDeepLink: (deepLinkInternal: string, quizId: string, quizScore: number) => string; getPollSharingText: (story: StoryWithRowIndex | undefined, page: Page | undefined) => string; getQuizSharingText: (story: StoryWithRowIndex | undefined, page: Page | undefined, quizScore: number, quizTitle: string) => string; } declare const _default: EngagementUnitsService; export default _default;