import { ReadModelRoot } from '../read-model-root'; import { Optional } from '../../../../common/optional'; import { ReadModelRootId } from '../read-model-root-id'; import { AggregateId } from '../../tactical/aggregate/aggregate-id'; /** * @deprecated */ export declare abstract class ReadModelStore> { abstract getById(readModelRootId: AggregateId): Optional; }