import { IEntitySnapshotService } from "../abstractions"; export declare abstract class EntitySnapshotService implements IEntitySnapshotService { protected readonly entityName: string; constructor(entityName: string); abstract getSnapshot(id: TEntityId): Promise; }