import { GetLatestEntriesByIdsUseCase } from "../abstractions.js"; import { Result } from "@webiny/feature/api"; import type { CmsEntry, CmsEntryValues, CmsModel } from "../../../../types/index.js"; /** * GetLatestEntriesByIdsNotDeletedDecorator - Filters out deleted entries. * * This decorator wraps the GetLatestEntriesByIdsUseCase and filters out * entries marked as deleted (wbyDeleted flag). */ declare class GetLatestEntriesByIdsNotDeletedDecoratorImpl implements GetLatestEntriesByIdsUseCase.Interface { private decoratee; constructor(decoratee: GetLatestEntriesByIdsUseCase.Interface); execute(model: CmsModel, ids: string[]): Promise[], GetLatestEntriesByIdsUseCase.Error>>; } export declare const GetLatestEntriesByIdsNotDeletedDecorator: typeof GetLatestEntriesByIdsNotDeletedDecoratorImpl; export {};