import { Result } from "@webiny/feature/api"; import { GetRevisionByIdRepository as RepositoryAbstraction } from "./abstractions.js"; import type { CmsEntry, CmsEntryValues, CmsModel } from "../../../types/index.js"; import { StorageOperations } from "../../../features/shared/abstractions.js"; import { EntryFromStorageTransform } from "../../../legacy/abstractions.js"; import { RuntimeTenant } from "../../../features/runtimeTenant/abstractions.js"; /** * GetRevisionByIdRepository - Fetches entry revision from storage and transforms it. * Returns entry or fails with EntryNotFoundError if not found. */ declare class GetRevisionByIdRepositoryImpl implements RepositoryAbstraction.Interface { private entryFromStorageTransform; private storageOperations; private runtimeTenant; constructor(entryFromStorageTransform: EntryFromStorageTransform.Interface, storageOperations: StorageOperations.Interface, runtimeTenant: RuntimeTenant.Interface); execute(initialModel: CmsModel, id: string): Promise, RepositoryAbstraction.Error>>; } export declare const GetRevisionByIdRepository: import("@webiny/di").Implementation; export {};