import type { CmsEntry, CmsEntryValues } from "../../../../types/index.js"; export interface ICreateUnpublishEntryDataResponse { entry: CmsEntry; } export interface ICreateUnpublishEntryDataFactory { create(originalEntry: CmsEntry): Promise>; } export declare const CreateUnpublishEntryDataFactory: import("@webiny/di").Abstraction; export declare namespace CreateUnpublishEntryDataFactory { type Interface = ICreateUnpublishEntryDataFactory; type Response = ICreateUnpublishEntryDataResponse; }