import 'reflect-metadata'; import { Organization } from './organization'; import { Story } from './story'; import { User } from './user'; export declare class ExperienceInformation { key: string; story: Story; user?: User; organization: Organization; data: Record; events: string[]; sessionId: string; url: string; created: Date; expireOn: Date; batchKey?: string; anonymous: boolean; workflowStopped: boolean; progress: string; milestone?: string; effectiveProgress: string; effectiveProgressValue: number; currentEpisodeKey?: string; campaignKey?: string; childEntityKey?: string; identity: string; version: number; }