import { Result } from "@webiny/feature/api"; import { GetLatestEntriesByIdsUseCase as UseCaseAbstraction } from "./abstractions.js"; import { GetLatestEntriesByIdsRepository } from "./abstractions.js"; import { AccessControl } from "../../../features/shared/abstractions.js"; import type { CmsEntry, CmsEntryValues, CmsModel } from "../../../types/index.js"; /** * GetLatestEntriesByIdsUseCase - Orchestrates fetching latest entries by IDs. * * Responsibilities: * - Apply access control * - Delegate to repository for data fetching */ declare class GetLatestEntriesByIdsUseCaseImpl implements UseCaseAbstraction.Interface { private repository; private accessControl; constructor(repository: GetLatestEntriesByIdsRepository.Interface, accessControl: AccessControl.Interface); execute(model: CmsModel, ids: string[]): Promise[], UseCaseAbstraction.Error>>; } export declare const GetLatestEntriesByIdsUseCase: import("@webiny/di").Implementation; export {};