import type { CmsEntry, CmsEntryValues, CmsModel, UpdateCmsEntryInput, UpdateCmsEntryOptionsInput } from "../../../../types/index.js"; export interface IUpdateEntryDataResponse { entry: CmsEntry; input: UpdateCmsEntryInput; } export interface IUpdateEntryDataFactory { create(model: CmsModel, rawInput: UpdateCmsEntryInput, originalEntry: CmsEntry, options?: UpdateCmsEntryOptionsInput): Promise>; } export declare const UpdateEntryDataFactory: import("@webiny/di").Abstraction; export declare namespace UpdateEntryDataFactory { type Interface = IUpdateEntryDataFactory; type Response = IUpdateEntryDataResponse; }