import { Result } from "@webiny/feature/api"; import { GetEntriesByIdsRepository 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"; /** * GetEntriesByIdsRepository - Fetches entries by IDs from storage and transforms them. * Returns array of entries. */ declare class GetEntriesByIdsRepositoryImpl implements RepositoryAbstraction.Interface { private entryFromStorageTransform; private storageOperations; private runtimeTenant; constructor(entryFromStorageTransform: EntryFromStorageTransform.Interface, storageOperations: StorageOperations.Interface, runtimeTenant: RuntimeTenant.Interface); execute(initialModel: CmsModel, ids: string[]): Promise[], RepositoryAbstraction.Error>>; } export declare const GetEntriesByIdsRepository: import("@webiny/di").Implementation; export {};