import { ReadModel } from 'ts-eventsourcing/ReadModel/ReadModel'; import { Playhead } from '../../ValueObject/Playhead'; import { Identity } from 'ts-eventsourcing/ValueObject/Identity'; export declare class StateReadModel implements ReadModel { private readonly id; private readonly state; private readonly playhead; constructor(id: Id, state: State, playhead: Playhead); getId(): Id; getState(): State; getPlayhead(): Playhead; }