import { Survey, SurveyQuestion } from 'posthog-js'; import { GlobalStore } from './GlobalStore'; export declare class AnalyticsStore { globalStore: GlobalStore; survey: Survey | null; currentQuestionIndex: number; question: SurveyQuestion | null; response: number | string | null; responses: Record; constructor(globalStore: GlobalStore); get isLastQuestion(): boolean; get questionCount(): string; get responsePayload(): { $survey_id: string; }; get surveyId(): "0196caa6-9b37-0000-98a7-f04e8d56faf5" | "0196a6b0-ccde-0000-b980-0b84ea2fef4a"; get surveyQuestions(): SurveyQuestion[]; loadSurvey: (forceReload?: boolean) => void; nextQuestion: () => void; resetStore: () => void; setResponse: (response: number | string | null) => void; }