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